Created
November 5, 2011 11:57
-
-
Save drewlesueur/1341430 to your computer and use it in GitHub Desktop.
Backbone presenter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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