editor.events.loaded
is a grouping of methods related to the loaded event for a Textbox.io Editor instance.
The loaded event is triggered when an editor has finished loading.
Methods
editor.events.loaded.addListener() | Binds a function to an editor instance's loaded event. |
editor.events.loaded.removeListener() | Removes a function from an editor instance's loaded event. |
Example
editor.events.loaded.addListener(function () { // do something console.log('The editor instance has loaded') });