eve icon indicating copy to clipboard operation
eve copied to clipboard

Custom events…

Results 14 eve issues
Sort by recently updated
recently updated
newest added

In strict mode the script causes a ReferenceError: assignment to undeclared variable eve when the eve function is assigned to the (undeclared) eve variable. This is a relatively new issue,...

Hi Guys, Can you register eve with bower, please ? It will be very helpful since Bower is integrated with Visual Studio and other library based on eve are available...

Hi, could you tell me how to create a proper jar file so that i can use in my project dependecies? Unfortunately, i have no idea of what lib is...

eve.f doesn't allow the use of the `scope` argument of eve. This change adjusts the behaviour of eve.f to match that of eve, by allowing both `name` and `scope` arguments.

Couldn't find a clean way to do it so my approach is to pass in a third variable ( array or pointer ) then modify eve.once to assign f2 to...

Eve references the global scope using `this`. But in browserify `this` doesn't refer to `window` https://github.com/substack/node-browserify/issues/372, so eve isn't attached to the global object. Could be fixed by passing in...

eve.js line # 68 ``` indexed.sort( numsort ) ; ``` perhaps should be ``` if ( indexed.length > 1) indexed.sort( numsort ) ; ``` Thanks

The repository is listed as the one from @DmitryBaranovskiy, which causes the linking on component.io to fail. (Speficially the "repo" parameter in the component.json)

E.g. ``` > eve.on('thing.constructor.hi', function() {}) TypeError: Cannot read property 'hi' of undefined ``` This is because your recursive traversal through the events object sees that `e[names[i]]` exists, and then...

I fire an Event with Eve: ``` eve("test.a"); ``` if I have an Eve EventHandler in which Element.attr() is called: ``` eve.on("test.*",function(){ console.log('#1',evt.nt()); circle.attr('r',20); // circle is defined somewhere else...