Skip to content

Commit

Permalink
add note about .on() changes to come
Browse files Browse the repository at this point in the history
  • Loading branch information
rvagg committed Feb 12, 2012
1 parent 88cebe0 commit f42d1f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -238,7 +238,7 @@ Here's the run down of the method alias' added...

**ADD EVENTS**

+ on - <code>$(element).on('click', fn);</code>
+ on - <code>$(element).on('click', fn);</code> *NOTE: This API is likely to change slightly in the near future see [#55](https://github.com/fat/bean/issues/55)*
+ addListener - <code>$(element).addListener('click', fn);</code>
+ bind - <code>$(element).bind('click', fn);</code>
+ listen - <code>$(element).listen('click', fn);</code>
Expand Down
2 changes: 1 addition & 1 deletion src/ender.js
Expand Up @@ -17,7 +17,7 @@
, fire = integrate('fire')

, methods = {
on: add
on: add // NOTE: .on() is likely to change in the near future, don't rely on this as-is see https://github.com/fat/bean/issues/55
, addListener: add
, bind: add
, listen: add
Expand Down

0 comments on commit f42d1f3

Please sign in to comment.