Change trigger to emit

This commit is contained in:
Chad Engler 2013-04-02 11:35:16 -04:00
parent 8ebcc96c77
commit d395506b08

View file

@ -23,7 +23,7 @@ PIXI.EventTarget = function () {
};
this.dispatchEvent = this.trigger = function ( event ) {
this.dispatchEvent = this.emit = function ( event ) {
for ( var listener in listeners[ event.type ] ) {