We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
hi - great lib, I added a function that I've been finding useful :
..... bind_once : function(event, fct) { var fn = function() { fct.call(this) this.unbind(event, fn) } this.bind(event, fn) },
perhaps you'd like to merge it in ?