tinymce.dom.EventUtils
This class wraps the browsers native event logic with more convenient methods.
Summary
Methods
Name | Summary | Defined by |
---|---|---|
Binds a callback to an event on the specified target. |
||
Removes all bound event listeners for the specified target. This will also remove any bound listeners to child nodes within that target. |
||
Fires the specified event on the specified target. |
||
Unbinds the specified event by name, name and callback or all events on the target. |
Methods
bind()
bind(target: Object, names: String, callback: function, scope: Object): function
Binds a callback to an event on the specified target.
clean()
clean(target: Object): EventUtils
Removes all bound event listeners for the specified target. This will also remove any bound listeners to child nodes within that target.
fire()
fire(target: Object, name: String, args: Object): EventUtils
Fires the specified event on the specified target.
unbind()
unbind(target: Object, names: String, callback: function): EventUtils
Unbinds the specified event by name, name and callback or all events on the target.