app.before.start

Occurs before starting the editor.

ArticleEditor('#entry', {
    css: '/your-article-dist-path/',
    subscribe: {
        'app.before.start': function() {
            ...
        }
    }
});

app.start

Occurs when the editor started.

ArticleEditor('#entry', {
    css: '/your-article-dist-path/',
    subscribe: {
        'app.start': function() {
            ...
        }
    }
});

app.before.stop

Occurs before stopping the editor.

ArticleEditor('#entry', {
    css: '/your-article-dist-path/',
    subscribe: {
        'app.before.stop': function() {
            ...
        }
    }
});

app.stop

Occurs when the editor stopped.

ArticleEditor('#entry', {
    css: '/your-article-dist-path/',
    subscribe: {
        'app.stop': function() {
            ...
        }
    }
});