Skip to content

Instantly share code, notes, and snippets.

@connor
Created April 29, 2012 23:02
Show Gist options
  • Save connor/2553756 to your computer and use it in GitHub Desktop.
Save connor/2553756 to your computer and use it in GitHub Desktop.
BEFORE left arrow keydown cubism.js
case 37: // left
if (focus == null) focus = size - 1;
if (focus > 0) context.focus(--focus);
break;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment