mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Added: New keyboard shortcuts for compose popup (Esc, Sift+Esc, `)
Fixed: Folders list tree viewer
This commit is contained in:
parent
3498700f61
commit
9b6b68e72b
36 changed files with 90 additions and 6 deletions
|
|
@ -241,6 +241,26 @@
|
|||
return aResult;
|
||||
};
|
||||
|
||||
FolderUserStore.prototype.reComputeFolderListSubFolders = function ()
|
||||
{
|
||||
return;
|
||||
|
||||
var
|
||||
func = function (aList) {
|
||||
_.each(aList, function (oFolder) {
|
||||
if (oFolder && oFolder.subFolders)
|
||||
{
|
||||
func(oFolder.subFolders());
|
||||
|
||||
oFolder.subFolders.valueHasMutated();
|
||||
}
|
||||
});
|
||||
}
|
||||
;
|
||||
|
||||
func(this.folderList());
|
||||
};
|
||||
|
||||
module.exports = new FolderUserStore();
|
||||
|
||||
}());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue