diff --git a/index.html b/index.html index 06cde8d2..ed67826b 100644 --- a/index.html +++ b/index.html @@ -786,7 +786,7 @@ var PrivateNote = Note.extend({
var Note = Backbone.Model.extend({
set: function(attributes, options) {
- Backbone.Model.prototype.set.call(this, attributes, options);
+ Backbone.Model.prototype.set.apply(this, arguments);
...
}
});