Created
September 24, 2018 10:48
-
-
Save jon-grangien/244a240da7dfc4f8fe56454c4ccff420 to your computer and use it in GitHub Desktop.
This file contains 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
window.stopEscapeDefault = function(e){ if(e.key === "Escape"){ e.preventDefault(); console.log("prevented defocus"); } }; | |
// onkeydown="window.stopEscapeDefault(event)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment