Skip to content

Commit

Permalink
remove events from ember that seem to be firing too much PR in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
SamSaffron committed Feb 24, 2013
1 parent 997b436 commit 419ecf7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions app/assets/javascripts/external/ember.js
Original file line number Diff line number Diff line change
Expand Up @@ -13297,7 +13297,7 @@ Ember.EventDispatcher = Ember.Object.extend(
setup: function(addedEvents) {
var event, events = {
touchstart : 'touchStart',
touchmove : 'touchMove',
// touchmove : 'touchMove',
touchend : 'touchEnd',
touchcancel : 'touchCancel',
keydown : 'keyDown',
Expand All @@ -13308,7 +13308,8 @@ Ember.EventDispatcher = Ember.Object.extend(
contextmenu : 'contextMenu',
click : 'click',
dblclick : 'doubleClick',
mousemove : 'mouseMove',
// https://github.com/emberjs/ember.js/pull/2148
// mousemove : 'mouseMove',
focusin : 'focusIn',
focusout : 'focusOut',
mouseenter : 'mouseEnter',
Expand Down
4 changes: 2 additions & 2 deletions app/assets/javascripts/external_production/ember.js
Original file line number Diff line number Diff line change
Expand Up @@ -13131,7 +13131,7 @@ Ember.EventDispatcher = Ember.Object.extend(
setup: function(addedEvents) {
var event, events = {
touchstart : 'touchStart',
touchmove : 'touchMove',
// touchmove : 'touchMove',
touchend : 'touchEnd',
touchcancel : 'touchCancel',
keydown : 'keyDown',
Expand All @@ -13142,7 +13142,7 @@ Ember.EventDispatcher = Ember.Object.extend(
contextmenu : 'contextMenu',
click : 'click',
dblclick : 'doubleClick',
mousemove : 'mouseMove',
// mousemove : 'mouseMove',
focusin : 'focusIn',
focusout : 'focusOut',
mouseenter : 'mouseEnter',
Expand Down

0 comments on commit 419ecf7

Please sign in to comment.