Skip to content
This repository has been archived by the owner on May 17, 2021. It is now read-only.

Releases: Olical/EventEmitter

Swapped to The Unlicense

08 Dec 20:08
Compare
Choose a tag to compare

Bye, MIT. Hello Unlicense. I did ask first in issue #84.

README improvements and merging PRs

01 Dec 21:39
Compare
Choose a tag to compare

Improved the README in a few ways as well as merging the following PRs.

v4.2.9

30 Sep 15:07
Compare
Choose a tag to compare
Small exports tweak by Krinkle and tabs -> spaces.

v4.2.8

30 Sep 15:06
Compare
Choose a tag to compare
Documentation corrections from @vanderhoorn.

Fixing Android 2.2 RegExp type check

29 Dec 11:56
Compare
Choose a tag to compare

@machard fixed a bug in an older version of the Android browser to do with RegExp type checking.

Adding component support.

08 Nov 13:52
Compare
Choose a tag to compare

Now there is a component.json, as requested by desandro/masonry#426.

Merging jstayton pull requests

26 Oct 10:53
Compare
Choose a tag to compare

EventEmitter now supports noConflict and has a few more Bower ignore rules thanks to @jstayton.

  • #61 - noConflict
  • #62 - Bower ignore rules.

Added removeAllListeners alias

22 Sep 17:45
Compare
Choose a tag to compare

As mentioned in issue #58, removeAllListeners has now been added as an alias to removeEvent to conform to the node API. Not that I'm aiming to conform to the node API, but if someone has some code that will work with both because of this change, then great.

addOnceListener infinite recursion fix

08 Aug 16:57
Compare
Choose a tag to compare

You could get once events into an infinite recursion fairly easily, that's a very bad thing. You could still do it with the return based once events if you tried, but there's nothing I can do about that really.

So this fixes issue #54. Enjoy!

Better method aliasing

05 Aug 17:06
Compare
Choose a tag to compare

@nathggns submitted a pull request that added better aliasing. It will now keep the alias even if you override the default implementation of what it was pointing to.