mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-01 21:49:21 +03:00
Added csscomb
Small fixes
This commit is contained in:
parent
39255ae061
commit
8013c0dc25
16 changed files with 5232 additions and 4474 deletions
|
|
@ -1196,7 +1196,7 @@
|
|||
*/
|
||||
RainLoopApp.prototype.isFolderExpanded = function (sFullNameHash)
|
||||
{
|
||||
var aExpandedList = /** @type {Array|null} */ LocalStorage.get(Enums.ClientSideKeyName.ExpandedFolders);
|
||||
var aExpandedList = LocalStorage.get(Enums.ClientSideKeyName.ExpandedFolders);
|
||||
return _.isArray(aExpandedList) && -1 !== _.indexOf(aExpandedList, sFullNameHash);
|
||||
};
|
||||
|
||||
|
|
@ -1206,7 +1206,7 @@
|
|||
*/
|
||||
RainLoopApp.prototype.setExpandedFolder = function (sFullNameHash, bExpanded)
|
||||
{
|
||||
var aExpandedList = /** @type {Array|null} */ LocalStorage.get(Enums.ClientSideKeyName.ExpandedFolders);
|
||||
var aExpandedList = LocalStorage.get(Enums.ClientSideKeyName.ExpandedFolders);
|
||||
if (!_.isArray(aExpandedList))
|
||||
{
|
||||
aExpandedList = [];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue