Skip to content

Instantly share code, notes, and snippets.

@MikeMcChillin
Created April 9, 2013 04:27
Show Gist options
  • Save MikeMcChillin/5342967 to your computer and use it in GitHub Desktop.
Save MikeMcChillin/5342967 to your computer and use it in GitHub Desktop.
Arrow Key Functions
document.onkeydown = (event)->
left = 37
up = 38
right = 39
down = 40
switch event.keyCode
when left then
when right then
when up then
when down then
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment