Skip to content

Instantly share code, notes, and snippets.

@MadLittleMods
Created February 1, 2016 12:23
Show Gist options
  • Save MadLittleMods/e83103d25d5b7610401a to your computer and use it in GitHub Desktop.
Save MadLittleMods/e83103d25d5b7610401a to your computer and use it in GitHub Desktop.
var spacebarKey = 32;
var enterKey = 13;
var checkIfActivationEvent = function(e) {
if(e.type === 'click' || (e.type === 'keydown' && (e.keyCode === spacebarKey || e.keyCode === enterKey))) {
return true;
}
return false;
};
module.exports = checkIfActivationEvent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment