eventsObjectprivate
The set of events names (and associated handler function names) to be setup and dispatched by the EventDispatcher. Modifications to this list can be done at setup time, generally via the Ember.Application.customEvents hash.
To add new events to be listened to:
let App = Ember.Application.create({
  customEvents: {
    paste: 'paste'
  }
});
 To prevent default events from being listened to:
let App = Ember.Application.create({
  customEvents: {
    mouseenter: null,
    mouseleave: null
  }
});
 
Please login to continue.