Enumeration EventType

Description

Lists all events that can be listened to on the editor or DOM element

Example

You can run code on "EventType" raised by using

editor.events.addEventListener(EventType.CHANGED, (evt) => console.log(evt.detail))

Enumeration Members

CHANGED: "changed"

Description

event emitted when history has changed i.e. the context of undo-redo

CLEARED: "cleared"

Description

event emitted when clearing is complete

CONVERTED: "converted"

Description

event emitted after the conversion is complete

ERROR: "error"

Description

event emitted when the editor encounters an error

EXPORTED: "exported"

Description

event emitted after the end of the export

IDLE: "idle"

Description

event emitted when the server is idle after a job

IMPORTED: "imported"

Description

event emitted after the end of the import

INTENTION: "intention"

Description

event emitted after

LOADED: "loaded"

Description

event emitted after full editor initialization

POINTEREVENTS: "pointer_events"

Description

event emitted on click on pointer events

SELECTED: "selected"

Description

event emitted after

Generated using TypeDoc