Closed TNick closed 9 years ago
Should't this line
if (this.listeners[event][i]._remove) { this.listeners[event].splice(i--, 1); len--; }
be more like
if (this.listeners[event][i].callback === callback) { this.listeners[event].splice(i--, 1); len--; }
?
IT TOTALLY SHOULD.
I will push the fix with next relase. Thank you.
Should't this line
be more like
?