off EDITOR
¶
off API is used to remove all event handlers for a specific event.
Syntax¶
off(event : String)
Example¶
1 2 3 4 5 6 7 8 9 10 | import INKAPI from './inkapi.js'
INKAPI.ready(async () => {
const EDITOR = INKAPI.editor;
//removing event handlers
EDITOR.off("contentChange")
});
|
Parameters¶
Name |
Type |
Description |
---|---|---|
event |
|
Required. A String that specifies the name of the event. |
Events¶
Following events are available for plugins to subscribe to;
Event |
Description |
---|---|
contentChange |
This event is triggered every time the INK editor content is changed. |