Created
March 28, 2016 05:28
-
-
Save deecewan/d2720ddc2f3e4458d96a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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