Documentation
App
app.before.start #
Occurs before starting the editor.
RedactorX('#entry', {
subscribe: {
'app.before.start': function() {
...
}
}
});
app.start #
Occurs when the editor started.
RedactorX('#entry', {
subscribe: {
'app.start': function() {
...
}
}
});
app.before.stop #
Occurs before stopping the editor.
RedactorX('#entry', {
subscribe: {
'app.before.stop': function() {
...
}
}
});
app.stop #
Occurs when the editor stopped.
RedactorX('#entry', {
subscribe: {
'app.stop': function() {
...
}
}
});