Skip to content

Instantly share code, notes, and snippets.

@werring
Created November 13, 2014 13:02
Show Gist options
  • Select an option

  • Save werring/5e0a2f412cf370a45c6e to your computer and use it in GitHub Desktop.

Select an option

Save werring/5e0a2f412cf370a45c6e to your computer and use it in GitHub Desktop.
(function() {
var codes = [];
var codeCount = 0;
window.addEventListener('keyup', function(e) {
if (codes.length == 10) codes.shift();
codes.push(e.keyCode);
if (codes.join(",") == "38,38,40,40,37,39,37,39,66,65") {
codeCount++;
var event = new CustomEvent('konami');
event.konamiCount = codeCount;
document.dispatchEvent(event);
}
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment