EventDispatcher
Constructor
EventDispatcher()
Creates EventDispatcher object.
Methods
type - The type of event to listen to.
listener - The function that gets called when the event is fired.
Adds a listener to an event type.
type - The type of event to listen to.
listener - The function that gets called when the event is fired.
Checks if listener is added to an event type.
type - The type of the listener that gets removed.
listener - The listener function that gets removed.
Removes a listener from an event type.
event - The event that gets fired.
Fire an event type.
Source
src/core/EventDispatcher.js
Edit