Skip to content

Instantly share code, notes, and snippets.

@pke
Created June 13, 2014 15:27
Show Gist options
  • Save pke/25060515f2514395a07c to your computer and use it in GitHub Desktop.
Save pke/25060515f2514395a07c to your computer and use it in GitHub Desktop.
One time listener pattern (easy in coffescript)
document.addEventListener "keydown", listener = (event) ->
document.removeEventListener("keydown", listener)
console.log(event)
var listener;
document.addEventListener("keydown", listener = function(event) {
document.removeEventListener("keydown", listener);
return console.log(event);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment