These docs are for v0.1.0. Click to read the latest docs for v1.0.0.

Front.report(options, callback)

Display an alert dialog with the optional specified content without any buttons.

options: object

Field NameTypeDescription
titleStringTitle of the alert.
messageStringBody of the alert.

callback: function

A callback function.

Front.report({
    title: 'Title of the report',
    message: 'Body of the report'
}, function() {
    console.log('User closed the report');
});