mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
30b2b7ce44
For simple rules like function spacing, we can auto-fix these across the code base so they are followed in a consistent way. To generate this patch, I ran: ./mach eslint devtools --no-ignore --fix After this, I reverted any changes to third party files that we really do want to ignore. MozReview-Commit-ID: 6Q8BApkAW20
98 lines
3.0 KiB
JavaScript
98 lines
3.0 KiB
JavaScript
/* 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";
|
|
|
|
const { Cc, Ci, Cu } = require("chrome");
|
|
|
|
loader.lazyImporter(this, "ResponsiveUIManager", "resource://devtools/client/responsivedesign/responsivedesign.jsm");
|
|
|
|
const BRAND_SHORT_NAME = Cc["@mozilla.org/intl/stringbundle;1"].
|
|
getService(Ci.nsIStringBundleService).
|
|
createBundle("chrome://branding/locale/brand.properties").
|
|
GetStringFromName("brandShortName");
|
|
|
|
const l10n = require("gcli/l10n");
|
|
|
|
exports.items = [
|
|
{
|
|
name: "resize",
|
|
description: l10n.lookup("resizeModeDesc")
|
|
},
|
|
{
|
|
item: "command",
|
|
runAt: "client",
|
|
name: "resize on",
|
|
description: l10n.lookup("resizeModeOnDesc"),
|
|
manual: l10n.lookupFormat("resizeModeManual2", [BRAND_SHORT_NAME]),
|
|
exec: gcli_cmd_resize
|
|
},
|
|
{
|
|
item: "command",
|
|
runAt: "client",
|
|
name: "resize off",
|
|
description: l10n.lookup("resizeModeOffDesc"),
|
|
manual: l10n.lookupFormat("resizeModeManual2", [BRAND_SHORT_NAME]),
|
|
exec: gcli_cmd_resize
|
|
},
|
|
{
|
|
item: "command",
|
|
runAt: "client",
|
|
name: "resize toggle",
|
|
buttonId: "command-button-responsive",
|
|
buttonClass: "command-button command-button-invertable",
|
|
tooltipText: l10n.lookup("resizeModeToggleTooltip"),
|
|
description: l10n.lookup("resizeModeToggleDesc"),
|
|
manual: l10n.lookupFormat("resizeModeManual2", [BRAND_SHORT_NAME]),
|
|
state: {
|
|
isChecked: function (aTarget) {
|
|
if (!aTarget.tab) {
|
|
return false;
|
|
}
|
|
return ResponsiveUIManager.isActiveForTab(aTarget.tab);
|
|
},
|
|
onChange: function (aTarget, aChangeHandler) {
|
|
if (aTarget.tab) {
|
|
ResponsiveUIManager.on("on", aChangeHandler);
|
|
ResponsiveUIManager.on("off", aChangeHandler);
|
|
}
|
|
},
|
|
offChange: function (aTarget, aChangeHandler) {
|
|
if (aTarget.tab) {
|
|
ResponsiveUIManager.off("on", aChangeHandler);
|
|
ResponsiveUIManager.off("off", aChangeHandler);
|
|
}
|
|
},
|
|
},
|
|
exec: gcli_cmd_resize
|
|
},
|
|
{
|
|
item: "command",
|
|
runAt: "client",
|
|
name: "resize to",
|
|
description: l10n.lookup("resizeModeToDesc"),
|
|
params: [
|
|
{
|
|
name: "width",
|
|
type: "number",
|
|
description: l10n.lookup("resizePageArgWidthDesc"),
|
|
},
|
|
{
|
|
name: "height",
|
|
type: "number",
|
|
description: l10n.lookup("resizePageArgHeightDesc"),
|
|
},
|
|
],
|
|
exec: gcli_cmd_resize
|
|
}
|
|
];
|
|
|
|
function* gcli_cmd_resize(args, context) {
|
|
let browserWindow = context.environment.chromeWindow;
|
|
yield ResponsiveUIManager.handleGcliCommand(browserWindow,
|
|
browserWindow.gBrowser.selectedTab,
|
|
this.name,
|
|
args);
|
|
}
|