You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can I access the customEvents object while using bean with ender? Goal is to provide something like mootools where you can add your own custom events with certain conditions. I would like to add my own event for enterkey pressed.
From MooTools Docs:
Element.Events.shiftclick = {
base: 'click', // the base event type
condition: function(event){ //a function to perform additional checks
return (event.shift == true); // this means the event is free to fire
}
};
The text was updated successfully, but these errors were encountered:
Can I access the customEvents object while using bean with ender? Goal is to provide something like mootools where you can add your own custom events with certain conditions. I would like to add my own event for enterkey pressed.
From MooTools Docs:
The text was updated successfully, but these errors were encountered: