Documentation / Events

App

app.before.start #

Occurs before starting the editor.

Redactor('#entry', {
    subscribe: {
        'app.before.start': function() {
            ...
        }
    }
});

app.start #

Occurs when the editor started.

Redactor('#entry', {
    subscribe: {
        'app.start': function() {
            ...
        }
    }
});

app.before.stop #

Occurs before stopping the editor.

Redactor('#entry', {
    subscribe: {
        'app.before.stop': function() {
            ...
        }
    }
});

app.stop #

Occurs when the editor stopped.

Redactor('#entry', {
    subscribe: {
        'app.stop': function() {
            ...
        }
    }
});