Skip to content

Instantly share code, notes, and snippets.

@deecewan
Created March 28, 2016 05:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deecewan/d2720ddc2f3e4458d96a to your computer and use it in GitHub Desktop.
Save deecewan/d2720ddc2f3e4458d96a to your computer and use it in GitHub Desktop.
document.addEventListener('keydown', function(e){
if (e.ctrlKey || e.metaKey){
if (String.fromCharCode(e.which).toLowerCase() != 's') return;
e.preventDefault();
console.log('Trying to save');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment