Last active
August 29, 2015 14:09
-
-
Save Siedrix/62b69da4e5ffe97793b5 to your computer and use it in GitHub Desktop.
Backbone.Widget
This file contains 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
Backbone.Widget = function() { | |
this.initialize.apply(this, arguments); | |
}; | |
_.extend(Backbone.Widget.prototype, Backbone.Events, { | |
initialize : function(){}, | |
}); | |
Backbone.Widget.extend = Backbone.View.extend; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment