##// END OF EJS Templates
Fixed typo
Jonathan Frederic -
Show More
@@ -141,7 +141,7 b' function(WidgetManager, _, Backbone){'
141 var return_value = WidgetModel.__super__.set.apply(this, arguments);
141 var return_value = WidgetModel.__super__.set.apply(this, arguments);
142
142
143 // Backbone only remembers the diff of the most recent set()
143 // Backbone only remembers the diff of the most recent set()
144 // opertation. Calling set multiple times in a row results in a
144 // operation. Calling set multiple times in a row results in a
145 // loss of diff information. Here we keep our own running diff.
145 // loss of diff information. Here we keep our own running diff.
146 this._buffered_state_diff = $.extend(this._buffered_state_diff, this.changedAttributes() || {});
146 this._buffered_state_diff = $.extend(this._buffered_state_diff, this.changedAttributes() || {});
147 return return_value;
147 return return_value;
General Comments 0
You need to be logged in to leave comments. Login now