[name]

JavaScript events for custom objects.
https://github.com/mrdoob/eventdispatcher.js

Constructor

[name]()

Creates EventDispatcher object.

Methods

.addEventListener( [page:String type], [page:Function listener] )

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.

.hasEventListener( [page:String type], [page:Function listener] )

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.

.removeEventListener( [page:String type], [page:Function listener] )

type - The type of the listener that gets removed.
listener - The listener function that gets removed.
Removes a listener from an event type.

.dispatchEvent( [page:String type] )

type - The type of event that gets fired.
Fire an event type.

Source

[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]