Skip to content

Instantly share code, notes, and snippets.

@stasgavrylov
Last active November 18, 2015 14:31
Show Gist options
  • Save stasgavrylov/41ba116d83b4af400bcc to your computer and use it in GitHub Desktop.
Save stasgavrylov/41ba116d83b4af400bcc to your computer and use it in GitHub Desktop.
shortcut for addEventListener
function on($emitter, types, handler)
{
types.split(/\s+/).forEach(function(type)
{
$emitter.addEventListener(type, handler)
})
return handler
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment