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