summaryrefslogtreecommitdiffstats
path: root/comm/mail/components/preferences/notifications.js
blob: 0970a944bdc1fb82864fb3f8c1a3315dc23a70c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, you can obtain one at http://mozilla.org/MPL/2.0/. */

/* import-globals-from ../../../../toolkit/content/preferencesBindings.js */

Preferences.addAll([
  { id: "mail.biff.alert.show_preview", type: "bool" },
  { id: "mail.biff.alert.show_subject", type: "bool" },
  { id: "mail.biff.alert.show_sender", type: "bool" },
  { id: "alerts.totalOpenTime", type: "int" },
]);

var gNotificationsDialog = {
  init() {
    let element = document.getElementById("totalOpenTime");
    Preferences.addSyncFromPrefListener(
      element,
      () => Preferences.get("alerts.totalOpenTime").value / 1000
    );
    Preferences.addSyncToPrefListener(element, element => element.value * 1000);
  },
};

window.addEventListener("load", () => gNotificationsDialog.init());