uxebu / bonsai

BonsaiJS is a graphics library and renderer
http://bonsaijs.org
Other
1.96k stars 189 forks source link

EventEmitter: Fix emit/once edge case #225

Closed basecode closed 10 years ago

basecode commented 10 years ago

This PR fixes a bug in EventEmitter where a Listener added via once is not removed correctly.

This example results in an infinite loop.

obj.once('play', function() {
  obj.play();
})