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

Does bean support `copy`, `cut`, and `paste` events? Edited to add: Also lacks `input` event. Bean is perfect for my requirement but its just lacking these events, how do I...

A `bean.one(elm, type, handler)` handler cannot itself invoke `bean.one` with the same element, type and function. Here's an example where I listen for one `mousemove` event, and in the handler...

When trying to find an element which matches a delegation selector, the findTarget function must select every element which matches the selector (potentially expensive), and loop that selection for each...

Change to check on createEvent instead of attachEvent in firelistener, since the function actually uses createEvent. We had a problem in IE8 which surprisingly used the firelistener function for modern...

Support running from loadScript() inside a Web Worker (there is no window nor document there), in Chrome.

Instead of using `navigator.userAgent` string to test for Mozilla Firefox (Which can be spoofed), it may be more robust to use the proprietary `InstallTrigger` variable present in all gecko-based browsers,...

I made changes discussed in #102 and #80. I used a base `Event` object and added `.type`. Doing it that way sets `.isBean` to `true` and some non-applicable properties to...

Fixes use case: ``` var build = new Function('module', '"use strict";\n' + ); var bean = {exports:{}}; build.call(window, bean); bean = bean.exports; ``` This use case is a minimal working...

On line 50, there needs to be a space after textinput within the quotes. when the str2arr executes, its combining textinputreadystatechange