Skip to content

Instantly share code, notes, and snippets.

@kajstrom
Created April 19, 2017 13:55
Show Gist options
  • Save kajstrom/80ce4fdad56406f087dc936b92ea15da to your computer and use it in GitHub Desktop.
Save kajstrom/80ce4fdad56406f087dc936b92ea15da to your computer and use it in GitHub Desktop.
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