Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save the-simian/87637de9e5509d6ccfcf to your computer and use it in GitHub Desktop.
Save the-simian/87637de9e5509d6ccfcf to your computer and use it in GitHub Desktop.
All your events. Please to not abuse.
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