browser/tools/mozscreenshots/mozscreenshots/extension/configurations/TabsInTitlebar.jsm
author ui.dev <deniskisavi@gmail.com>
Sat, 25 Mar 2023 22:34:18 +0000
changeset 657948 735b73193dc663078843621b2eeccbc2d4abe328
parent 623467 ad6234248f3d039ad98ece85d9c4581c297973f0
permissions -rw-r--r--
Bug 1823719 - Convert toolkit/components/remotebrowserutils to ES modules. r=Standard8. Differential Revision: https://phabricator.services.mozilla.com/D173631

/* 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/. */

"use strict";

var EXPORTED_SYMBOLS = ["TabsInTitlebar"];

const PREF_TABS_IN_TITLEBAR = "browser.tabs.inTitlebar";

var TabsInTitlebar = {
  init(libDir) {},

  configurations: {
    tabsInTitlebar: {
      selectors: ["#navigator-toolbox"],
      async applyConfig() {
        Services.prefs.setIntPref(PREF_TABS_IN_TITLEBAR, 1);
        return undefined;
      },
    },

    tabsOutsideTitlebar: {
      selectors: ["#navigator-toolbox"].concat(
        Services.appinfo.OS == "Linux" ? [] : ["#titlebar"]
      ),
      async applyConfig() {
        Services.prefs.setIntPref(PREF_TABS_IN_TITLEBAR, 0);
      },
    },
  },
};