Skip to content

Instantly share code, notes, and snippets.

@robharper
Created February 28, 2014 18:55
Show Gist options
  • Save robharper/9277363 to your computer and use it in GitHub Desktop.
Save robharper/9277363 to your computer and use it in GitHub Desktop.
Remove expensive events from Ember's default set
// Trim events down to a small subset of the default
Ember.EventDispatcher.reopen({
events: {
click : 'click',
keypress : 'keyPress',
mousedown : 'mouseDown',
mouseup : 'mouseUp',
mousewheel : 'mouseWheel'
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment