Skip to content

Commit 228b35a

Browse files
committed
Fix stylesheet url (#26)
1 parent 4cba782 commit 228b35a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/console-overlay.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const ConsoleOverlay = Class(
5252
Trace.sysout("ConsoleOverlay.destroy;", arguments);
5353

5454
let win = this.getPanelWindow();
55-
removeSheet(win, "chrome://firequery/skin/firequery.css", "author");
55+
removeSheet(win, "chrome://firequery-os/skin/firequery.css", "author");
5656
},
5757

5858
// Events
@@ -82,7 +82,7 @@ const ConsoleOverlay = Class(
8282
// Load custom style-sheet into the panel window (content window of
8383
// the panel's frame).
8484
let win = this.getPanelWindow();
85-
loadSheet(win, "chrome://firequery/skin/firequery.css", "author");
85+
loadSheet(win, "chrome://firequery-os/skin/firequery.css", "author");
8686
},
8787

8888
onReady: function(options) {

lib/inspector-overlay.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ const InspectorOverlay = Class(
156156

157157
frame.addEventListener("unload", this.onMarkupViewUnloaded, true);
158158

159-
loadSheet(win, "chrome://firequery/skin/firequery.css", "author");
159+
loadSheet(win, "chrome://firequery-os/skin/firequery.css", "author");
160160
},
161161

162162
onMarkupViewUnloaded: function() {

0 commit comments

Comments
 (0)