Skip to content

Instantly share code, notes, and snippets.

@drewlesueur
Created November 5, 2011 11:57
Show Gist options
  • Save drewlesueur/1341430 to your computer and use it in GitHub Desktop.
Save drewlesueur/1341430 to your computer and use it in GitHub Desktop.
Backbone presenter
Presenter = function() {
this.initialize();
}
Presenter.extend = Backbone.View.extend
_.extend(Presenter.prototype, Backbone.Events, {
initialize: function () {}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment