mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-10 06:58:27 +03:00
Optimizations
Added "[labs]imap_folder_list_limit" setting (optimization)
This commit is contained in:
parent
833f40c115
commit
7ef9ebb45f
22 changed files with 878 additions and 32 deletions
|
|
@ -91,6 +91,9 @@
|
|||
case 'doc':
|
||||
sClass = 'icon-file-text';
|
||||
break;
|
||||
case 'certificate':
|
||||
sClass = 'icon-file-certificate';
|
||||
break;
|
||||
// case 'pdf':
|
||||
// sClass = 'icon-file-pdf';
|
||||
// break;
|
||||
|
|
@ -628,6 +631,10 @@
|
|||
{
|
||||
aResult.push('focused');
|
||||
}
|
||||
if (this.isImportant())
|
||||
{
|
||||
aResult.push('important');
|
||||
}
|
||||
if (this.hasAttachments())
|
||||
{
|
||||
aResult.push('withAttachments');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue