Object.assign -> _.extend(), for to make Chrome 45 and below work

FREEBIE
pull/749/head
Scott Nonnenberg 8 years ago
parent 1e8ae774a2
commit d1fa28b706

@ -20,7 +20,7 @@
addOne: function(model) {
if (this.itemView) {
var options = Object.assign({}, this.options.toInclude, {model: model});
var options = _.extend({}, this.options.toInclude, {model: model});
var view = new this.itemView(options);
this.$el.append(view.render().el);
this.$el.trigger('add');

Loading…
Cancel
Save