File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,6 @@ this.createjs = this.createjs||{};
5353 * @param {String } type The event type.
5454 * @param {Boolean } bubbles Indicates whether the event will bubble through the display list.
5555 * @param {Boolean } cancelable Indicates whether the default behaviour of this event can be cancelled.
56- * @uses EventDispatcher
5756 * @constructor
5857 **/
5958var Event = function ( type , bubbles , cancelable ) {
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ this.createjs = this.createjs||{};
5151 * {{#crossLink "EventDispatcher/off"}}{{/crossLink}} method is merely an alias to
5252 * {{#crossLink "EventDispatcher/removeEventListener"}}{{/crossLink}}.
5353 *
54- * Another addition to the DOM Level 2 model is the {{#crossLink "EventDispatcher/removeAllListeners "}}{{/crossLink}}
54+ * Another addition to the DOM Level 2 model is the {{#crossLink "EventDispatcher/removeAllEventListeners "}}{{/crossLink}}
5555 * method, which can be used to listeners for all events, or listeners for a specific event. The Event object also
5656 * includes a {{#crossLink "Event/remove"}}{{/crossLink}} method which removes the active listener.
5757 *
@@ -86,7 +86,7 @@ this.createjs = this.createjs||{};
8686 * @constructor
8787 **/
8888var EventDispatcher = function ( ) {
89- this . initialize ( ) ;
89+ /* this.initialize(); */ // not needed.
9090} ;
9191var p = EventDispatcher . prototype ;
9292
You can’t perform that action at this time.
0 commit comments