Created
April 19, 2017 13:55
-
-
Save kajstrom/80ce4fdad56406f087dc936b92ea15da to your computer and use it in GitHub Desktop.
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
Backbone.View = (function(View) { | |
return View.extend({ | |
constructor: function(options) { | |
this.options = _.defaults(options, _.clone(this.options)); | |
View.apply(this, arguments); | |
} | |
}); | |
})(Backbone.View); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment