we don't need these move events, they always get in the way of me profiling cause they flood the uis with event

This commit is contained in:
Sam 2013-06-13 13:17:26 +10:00
parent 384d743e7b
commit 875ee62d45
2 changed files with 4 additions and 4 deletions

View file

@ -14676,7 +14676,7 @@ Ember.EventDispatcher = Ember.Object.extend(/** @scope Ember.EventDispatcher.pro
setup: function(addedEvents, rootElement) {
var event, events = {
touchstart : 'touchStart',
touchmove : 'touchMove',
// touchmove : 'touchMove',
touchend : 'touchEnd',
touchcancel : 'touchCancel',
keydown : 'keyDown',
@ -14687,7 +14687,7 @@ Ember.EventDispatcher = Ember.Object.extend(/** @scope Ember.EventDispatcher.pro
contextmenu : 'contextMenu',
click : 'click',
dblclick : 'doubleClick',
mousemove : 'mouseMove',
// mousemove : 'mouseMove',
focusin : 'focusIn',
focusout : 'focusOut',
mouseenter : 'mouseEnter',

View file

@ -14509,7 +14509,7 @@ Ember.EventDispatcher = Ember.Object.extend(/** @scope Ember.EventDispatcher.pro
setup: function(addedEvents, rootElement) {
var event, events = {
touchstart : 'touchStart',
touchmove : 'touchMove',
// touchmove : 'touchMove',
touchend : 'touchEnd',
touchcancel : 'touchCancel',
keydown : 'keyDown',
@ -14520,7 +14520,7 @@ Ember.EventDispatcher = Ember.Object.extend(/** @scope Ember.EventDispatcher.pro
contextmenu : 'contextMenu',
click : 'click',
dblclick : 'doubleClick',
mousemove : 'mouseMove',
// mousemove : 'mouseMove',
focusin : 'focusIn',
focusout : 'focusOut',
mouseenter : 'mouseEnter',