mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-31 21:19:21 +03:00
Add some comments and some renames
This commit is contained in:
parent
25214f2d87
commit
c14d7bdd46
11 changed files with 74 additions and 27 deletions
|
|
@ -32,6 +32,14 @@ export class UserSettingsGeneral extends AbstractViewSettings {
|
|||
this.language = LanguageStore.language;
|
||||
this.languages = LanguageStore.languages;
|
||||
this.hourCycle = LanguageStore.hourCycle;
|
||||
/*
|
||||
// 'THREAD=REFS', 'THREAD=REFERENCES', 'THREAD=ORDEREDSUBJECT'
|
||||
this.threadModes = ko.observableArray();
|
||||
AppUserStore.capabilities.forEach(capa =>
|
||||
capa.startsWith('THREAD=') && this.threadModes.push(capa.slice(7))
|
||||
);
|
||||
this.threadModes.sort((a, b) => a.length - b.length);
|
||||
*/
|
||||
|
||||
this.soundNotification = SMAudio.notifications;
|
||||
this.notificationSound = ko.observable(SettingsGet('NotificationSound'));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue