Skip to content

Commit 7b46d2c

Browse files
committed
Fix module path
1 parent d96c46f commit 7b46d2c

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

lib/data-tooltip.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,6 @@ const { Cu, Ci } = require("chrome");
1313
// DevTools
1414
const { devtools, safeImport, safeRequire, makeInfallible } = require("firebug.sdk/lib/core/devtools.js");
1515

16-
// See also: https://bugzilla.mozilla.org/show_bug.cgi?id=912121
17-
const { VariablesView } = safeImport(
18-
"resource:///modules/devtools/client/shared/widgets/VariablesView.jsm",
19-
"resource:///modules/devtools/VariablesView.jsm");
20-
2116
const { Tooltip } = safeRequire(devtools,
2217
"devtools/client/shared/widgets/Tooltip",
2318
"devtools/shared/widgets/Tooltip");

lib/jquery-renderer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const { devtools, safeImport, safeRequire } = require("firebug.sdk/lib/core/devt
1616

1717
// See also: https://bugzilla.mozilla.org/show_bug.cgi?id=912121
1818
const { VariablesView } = safeImport(
19-
"resource:///modules/devtools/client/shared/widgets/VariablesView.jsm",
19+
"resource://devtools/client/shared/widgets/VariablesView.jsm",
2020
"resource:///modules/devtools/VariablesView.jsm");
2121

2222
const { Widgets } = safeRequire(devtools,

0 commit comments

Comments
 (0)