33 lines
963 B
JavaScript
Raw Normal View History

2013-07-26 13:10:52 -04:00
/*
Discourse is not interested in watching `mouseMove` or `touchMove` events on an Ember views,
so we remove them from the events the EventDispatcher watches for.
*/
Ember.EventDispatcher.reopen({
events: {
touchstart : 'touchStart',
touchend : 'touchEnd',
touchcancel : 'touchCancel',
keydown : 'keyDown',
keyup : 'keyUp',
keypress : 'keyPress',
mousedown : 'mouseDown',
mouseup : 'mouseUp',
contextmenu : 'contextMenu',
click : 'click',
dblclick : 'doubleClick',
focusin : 'focusIn',
focusout : 'focusOut',
mouseenter : 'mouseEnter',
mouseleave : 'mouseLeave',
submit : 'submit',
input : 'input',
change : 'change',
dragstart : 'dragStart',
drag : 'drag',
dragenter : 'dragEnter',
dragleave : 'dragLeave',
dragover : 'dragOver',
drop : 'drop',
dragend : 'dragEnd'
}
});