summaryrefslogtreecommitdiffstats
path: root/comm/mail/base/content/minimizeToTray.js
blob: f65fcc7b433eb35de7e2a07c5b67ad44c4bd85ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* 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/. */

/* globals docShell, Services, windowState */

addEventListener("sizemodechange", () => {
  if (
    windowState == window.STATE_MINIMIZED &&
    Services.prefs.getBoolPref("mail.minimizeToTray", false)
  ) {
    setTimeout(() => {
      var bw = docShell.treeOwner.QueryInterface(Ci.nsIBaseWindow);
      Cc["@mozilla.org/messenger/osintegration;1"]
        .getService(Ci.nsIMessengerWindowsIntegration)
        .hideWindow(bw);
    });
  }
});