Tiny fix: default __persisted to false

This commit is contained in:
Fabien Franzen 2014-10-19 18:52:18 +02:00
parent e7a108efdb
commit 4e20128945
1 changed files with 1 additions and 0 deletions

View File

@ -120,6 +120,7 @@ ModelBaseClass.prototype._initProperties = function (data, options) {
this.__data = {};
this.__dataSource = options.dataSource;
this.__strict = strict;
this.__persisted = false;
}
if (options.persisted !== undefined) {