* Dispatches out a onNodeChange event to all observers. This method should be called when you * need to update the UI states or element path etc. * * @method nodeChanged * @param {Object} args Optional args to pass to NodeChange event handlers.
(args?: any)
| 494 | * @param {Object} args Optional args to pass to NodeChange event handlers. |
| 495 | */ |
| 496 | public nodeChanged(args?: any): void { |
| 497 | this._nodeChangeDispatcher.nodeChanged(args); |
| 498 | } |
| 499 | |
| 500 | /** |
| 501 | * Adds a custom command to the editor. This function can also be used to override existing commands. |
no outgoing calls
no test coverage detected