Skip to content

Instantly share code, notes, and snippets.

@dwarfmondo
Last active December 21, 2015 20:08
Show Gist options
  • Save dwarfmondo/6358639 to your computer and use it in GitHub Desktop.
Save dwarfmondo/6358639 to your computer and use it in GitHub Desktop.
window.FooView = Backbone.View.extend({
el: 'body',
events: {
'a.bar click': 'save'
},
save: function(event) {
event.preventDefault();
var src = $(event.currentTarget);
// do stuff
}
});
var foo_view = new FooView();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment