Skip to content

Instantly share code, notes, and snippets.

@kimjoar
Last active December 15, 2015 11:39
Show Gist options
  • Save kimjoar/5254084 to your computer and use it in GitHub Desktop.
Save kimjoar/5254084 to your computer and use it in GitHub Desktop.
// simpler render
render: function() {
var els = _.map(this._views, function(subview) {
return subview.render().el;
});
this.$el.empty().append(els);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment