Skip to content

Instantly share code, notes, and snippets.

@jonathantneal
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonathantneal/bf784b92fe277e084783 to your computer and use it in GitHub Desktop.
Save jonathantneal/bf784b92fe277e084783 to your computer and use it in GitHub Desktop.
EventStreams example
// http://www.xanthir.com/b4PV0
var ctrlKeyStream = EventStream.listen(document, 'keydown').map(function (event) {
return event.ctrlKey;
});
ctrlKeyStream.forEach(function (event) {
// do something when a key down event fires that involves the CTRL key being pressed
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment