Ember js view events
Took me a while to dig this out. Here is a list of event methods views can implement and the corresponding javascript events.
Browser Event : Ember View Event
touchstart: touchStart
touchmove: touchMove
touchend: touchEnd
touchcancel: touchCancel
keydown: keyDown
keyup: keyUp
keypress: keyPress
mousedown: mouseDown
mouseup: mouseUp
click: click
dblclick: doubleClick
mousemove: mouseMove
focusin: focusIn
focusout: focusOut
mouseenter: mouseEnter
mouseleave: mouseLeave
submit: submit
change: change
dragstart: dragStart
drag: drag
dragenter: dragEnter
dragleave: dragLeave
dragover: dragOver
drop: drop
dragend: dragEnd







