Tiny fix: default __persisted to false
This commit is contained in:
parent
e7a108efdb
commit
4e20128945
|
@ -120,6 +120,7 @@ ModelBaseClass.prototype._initProperties = function (data, options) {
|
||||||
this.__data = {};
|
this.__data = {};
|
||||||
this.__dataSource = options.dataSource;
|
this.__dataSource = options.dataSource;
|
||||||
this.__strict = strict;
|
this.__strict = strict;
|
||||||
|
this.__persisted = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (options.persisted !== undefined) {
|
if (options.persisted !== undefined) {
|
||||||
|
|
Loading…
Reference in New Issue