Created
June 18, 2015 16:34
-
-
Save the-simian/87637de9e5509d6ccfcf to your computer and use it in GitHub Desktop.
All your events. Please to not abuse.
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
Object.keys(Event).forEach(function (etype) { | |
if(etype.indexOf("MOUSE") > -1){ | |
return; | |
} | |
document.addEventListener( | |
etype.toLowerCase(), console.log.bind(console), false | |
); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment