Classes
AbstractEditorAnnotationCommandCommandComponentConfiguratorContainerEditorContainerSelectionDOMImporterDocumentDocumentNodeEditAnnotationCommandEditingEventEmitterInsertInlineNodeCommandNodeIndexPropertyAnnotationPropertySelectionProseEditorScrollPaneSelectionSpellCheckCommandSurfaceTextNodeTransactionDocumentVirtualElement
Components
Modules
EventEmitter
Class defined in util/EventEmitter.js#12
Event support.
this.emit(event, ...arguments)
Method defined in util/EventEmitter.js#21
Emit an event.
Parameters
event | String | |
...arguments |
Returns
true if a listener was notified, false otherwise. |
this.on(event, method, context)
Method defined in util/EventEmitter.js#50
Subscribe a listener to an event.
Optionally, a priority
can be provided to control the order
of all bindings. The default priority is 0. All listeners with the
same priority remain in order of registration.
A lower priority will make the listener be called later, a higher
priority earlier.
Parameters
event | String | |
method | Function | |
context | Object |
this.off(event, method, context)
Method defined in util/EventEmitter.js#62
Unsubscribe a listener from an event.
Parameters
event | String | |
method | Function | |
context | Object |