Skip to content

Instantly share code, notes, and snippets.

@twalker
Forked from wesen/backbone-mixin.js
Created June 11, 2013 01:25
Show Gist options
  • Save twalker/5753914 to your computer and use it in GitHub Desktop.
Save twalker/5753914 to your computer and use it in GitHub Desktop.
/**
* ## Merging mixin views in backbone.js ##
*
* really just more a test for tumblr gistr
*/
/**
* Merge the mixin (a Backbone.View) into another Backbone.View. Automatically merge events, defaults, and call the parent initializer.
**/
function mergeMixin(view, mixin) {
_.defaults(view.prototype, mixin);
_.defaults(view.prototype.events, mixin.events);
if (mixin.initialize !== undefined) {
var oldInitialize = view.prototype.initialize;
view.prototype.initialize = function () { mixin.initialize.apply(this); oldInitialize.apply(this); };
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment