Skip to content

Instantly share code, notes, and snippets.

@strukturart
Created December 1, 2019 22:35
Show Gist options
  • Save strukturart/dc51067e3a10622cd083b9f9a81998df to your computer and use it in GitHub Desktop.
Save strukturart/dc51067e3a10622cd083b9f9a81998df to your computer and use it in GitHub Desktop.
//////////////////////////
////KEYPAD TRIGGER////////////
/////////////////////////
function handleKeyDown(evt) {
switch (evt.key) {
case 'Backspace':
break;
case 'SoftLeft':
break;
case 'SoftRight':
break;
case 'Enter':
break;
case '1':
break;
case '2':
break;
case '3':
break;
case 'ArrowRight':
break;
case 'ArrowLeft':
break;
case 'ArrowUp':
break;
case 'ArrowDown':
break;
}
};
document.addEventListener('keydown', handleKeyDown);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment