Quick patch to solve Model.url issue. Should update to backbone 1.1.0 instead.

This commit is contained in:
Taloth Saldono 2014-02-01 23:09:30 +01:00
parent 7a4e05f04a
commit 98903869c3
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@
};
// A list of options to be attached directly to the model, if provided.
var modelOptions = ['url', 'urlRoot', 'collection'];
var modelOptions = ['urlRoot', 'collection'];
// Attach all inheritable methods to the Model prototype.
_.extend(Model.prototype, Events, {