diff --git a/js/views/list_view.js b/js/views/list_view.js index b80204f380..394d9ed416 100644 --- a/js/views/list_view.js +++ b/js/views/list_view.js @@ -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');