Skip to content

Instantly share code, notes, and snippets.

@danscotton
Created April 13, 2012 10:11
Show Gist options
  • Save danscotton/2375585 to your computer and use it in GitHub Desktop.
Save danscotton/2375585 to your computer and use it in GitHub Desktop.
var bootstrap = {
pubsub: pubsub,
$: function(selector) {
return bonzo(qwery(selector));
},
bind: function(el, event, fn) {
el[0].addEventListener(event, fn, false);
}
};
news.bind(myElement, 'click', function(e) { alert('I was clicked!'); })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment