Skip to content

Instantly share code, notes, and snippets.

@velara3
Last active March 14, 2016 05:57
Show Gist options
  • Save velara3/16b46306c6ae432b62ae to your computer and use it in GitHub Desktop.
Save velara3/16b46306c6ae432b62ae to your computer and use it in GitHub Desktop.
switch(event.charCode)
{
case 90: // Z
case 122: // z
/* pre-Argo and on the mac then ignoreNextTextEvent */
if (!Configuration.playerEnablesArgoFeatures && isMac) {
ignoreNextTextEvent = true;
}
if (event.shiftKey) {
redo();
event.preventDefault();
} else {
undo();
event.preventDefault();
}
break;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment