mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-01 21:49:21 +03:00
ES2015 first look / babeljs
This commit is contained in:
parent
5dcceaaca5
commit
445cd155e5
123 changed files with 3214 additions and 3680 deletions
|
|
@ -380,7 +380,7 @@
|
|||
|
||||
if (!this.allowFolders)
|
||||
{
|
||||
sSentFolder = Consts.Values.UnuseOptionValue;
|
||||
sSentFolder = Consts.UNUSED_OPTION_VALUE;
|
||||
}
|
||||
|
||||
if ('' === sSentFolder)
|
||||
|
|
@ -412,7 +412,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
sSentFolder = Consts.Values.UnuseOptionValue === sSentFolder ? '' : sSentFolder;
|
||||
sSentFolder = Consts.UNUSED_OPTION_VALUE === sSentFolder ? '' : sSentFolder;
|
||||
|
||||
Cache.setFolderHash(this.draftFolder(), '');
|
||||
Cache.setFolderHash(sSentFolder, '');
|
||||
|
|
@ -649,7 +649,7 @@
|
|||
sDraftFolder = FolderStore.draftFolder()
|
||||
;
|
||||
|
||||
if ('' !== sDraftFolder && Consts.Values.UnuseOptionValue !== sDraftFolder)
|
||||
if ('' !== sDraftFolder && Consts.UNUSED_OPTION_VALUE !== sDraftFolder)
|
||||
{
|
||||
Cache.setFolderHash(sDraftFolder, '');
|
||||
if (FolderStore.currentFolderFullNameRaw() === sDraftFolder)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue