Fixed translation issue (Closes #263)

This commit is contained in:
RainLoop Team 2014-07-31 17:29:11 +04:00
parent 7dc9441852
commit b83ed4b1ce
30 changed files with 207 additions and 201 deletions

View file

@ -313,7 +313,7 @@ FolderModel.prototype.initByJson = function (oJsonFolder)
this.fullNameHash = oJsonFolder.FullNameHash;
this.deep = oJsonFolder.FullNameRaw.split(this.delimiter).length - 1;
this.selectable = !!oJsonFolder.IsSelectable;
this.existen = !!oJsonFolder.IsExisten;
this.existen = !!oJsonFolder.IsExists;
this.subScribed(!!oJsonFolder.IsSubscribed);
this.type('INBOX' === this.fullNameRaw ? Enums.FolderType.Inbox : Enums.FolderType.User);