-
-
Save dmitry/1256695 to your computer and use it in GitHub Desktop.
Merge backbone views (mixin pattern)
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
/** | |
* ## 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
cool!