Skip to content

Instantly share code, notes, and snippets.

@connor
Created April 29, 2012 23:03
Show Gist options
  • Save connor/2553760 to your computer and use it in GitHub Desktop.
Save connor/2553760 to your computer and use it in GitHub Desktop.
AFTER left arrow cubism.js
case 37: // left
if (d3.event.shiftKey && focus > 20) context.focus(focus -= 20);
else {
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