customEventsObject
public
The DOM events for which the event dispatcher should listen.
By default, the application's Ember.EventDispatcher
listens for a set of standard DOM events, such as mousedown
and keyup
, and delegates them to your application's Ember.View
instances.
If you would like additional bubbling events to be delegated to your views, set your Ember.Application
's customEvents
property to a hash containing the DOM event name as the key and the corresponding view method name as the value. Setting an event to a value of null
will prevent a default event listener from being added for that event.
To add new events to be listened to:
1 2 3 4 5 6 | let App = Ember.Application.create({ customEvents: { // add support for the paste event paste: 'paste' } }); |
To prevent default events from being listened to:
1 2 3 4 5 6 7 | let App = Ember.Application.create({ customEvents: { // remove support for mouseenter / mouseleave events mouseenter: null , mouseleave: null } }); |
Default: null
Please login to continue.