mirror of
https://github.com/codex-team/editor.js
synced 2026-03-15 15:15:47 +01:00
984 B
984 B
CodeX Editor Events Module
Module allows Developers to subscribe on events or trigger own events
Methods
On
Events.on(eventName, callback)
Method subscribes callback on event. It will be called when CodeX Editor emits this event
params
| Param | Type | Description |
|---|---|---|
| eventName | String | event name |
| callback | Function | event callback |
Off
Events.off(eventName, callback)
Method unsubscribes callback on event
params
| Param | Type | Description |
|---|---|---|
| eventName | String | event name |
| callback | Function | event callback |
Emit
Events.emit(eventName, data)
Method emits data to all subscribed callbacks
params
| Param | Type | Description |
|---|---|---|
| eventName | String | event name |
| data | Object | any data |