Skip to content

Instantly share code, notes, and snippets.

@kristoferjoseph
Created July 31, 2013 11:40
Show Gist options
  • Save kristoferjoseph/6121299 to your computer and use it in GitHub Desktop.
Save kristoferjoseph/6121299 to your computer and use it in GitHub Desktop.
Reflow Mixin Example
//... Omitted for brevity
var ViewMixin = {
addView: function (itemModel) {
var newView = ViewFactory.create(itemModel);
if (!newView) {
return;
}
var insertPos = Document.getInsertPosition();
newView.insertIntoDom(insertPos);
}
};
//... In another file
_.extend(BoxView.prototype, ViewMixin);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment