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

Releases: Olical/EventEmitter

Swapped to The Unlicense

Choose a tag to compare

@Olical Olical released this 08 Dec 20:08

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

README improvements and merging PRs

Choose a tag to compare

@Olical Olical released this 01 Dec 21:39

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

v4.2.9

Choose a tag to compare

@Olical Olical released this 30 Sep 15:07
Small exports tweak by Krinkle and tabs -> spaces.

v4.2.8

Choose a tag to compare

@Olical Olical released this 30 Sep 15:06
Documentation corrections from @vanderhoorn.

Fixing Android 2.2 RegExp type check

Choose a tag to compare

@Olical Olical released this 29 Dec 11:56

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

Adding component support.

Choose a tag to compare

@Olical Olical released this 08 Nov 13:52

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

Merging jstayton pull requests

Choose a tag to compare

@Olical Olical released this 26 Oct 10:53

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

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

Added removeAllListeners alias

Choose a tag to compare

@Olical Olical released this 22 Sep 17:45

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

Choose a tag to compare

@Olical Olical released this 08 Aug 16:57

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

Choose a tag to compare

@Olical Olical released this 05 Aug 17:06

@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.