bean icon indicating copy to clipboard operation
bean copied to clipboard

an events api for javascript

Results 37 bean issues
Sort by recently updated
recently updated
newest added

`$().blur()` and `$().focus()` either get overridden by or override Bonzo's blur and focus methods.

The documentation is almost completely lacking details about event handlers. The docs should be explicit about the arguments passed to the handler, and about the context (this) of the handler.

events attached to DOM object pass back an event argument ``` bean.on(element, 'click', function (e) { console.log(e); }); ``` but events attached to a JS objects do not receive the...

To improve jQuery-compatibility and general consistency in the arguments passed to event handlers via different methods, I think that `bean.fire()` and `.trigger()` need modification. Consider: ``` js (function ($) {...

Hello. Noticed that using bean.on method i cannot bind focusin and focusout events in IE8. With native attachEvent everything works well though. Fiddle: http://jsfiddle.net/andrey/a9XPL To test it under IE8 use...

I want to use the familiar syntax for querying, dom manip, events, etc: ``` $('.foo').on('click', function() { alert('bar') }); ``` but without the ender glue that typically allows it. I've...

Seems that Buster.js structure changed, but opening `bean/tests/tests.html` throws the following console errors: ``` GET http://hiretracking.localhost/embeddable-form/components/bean/node_modules/buster/resources/buster-test.js 404 (Not Found) tests.html:9 Uncaught ReferenceError: buster is not defined noconflict-test.js:3 Uncaught ReferenceError: buster...

Are you guys interested or should I maintain my own fork?

Hey, first of all nice job ! I would like to know if it was possible to add a function wich would be called "has" and would check if a...

Basically I'm trying to do this: ``` javascript $("input").fire("keydown", { type: "keydown", keyCode: 191 }); ``` If I read the code correctly it should fix the half-baked event I pass...