Skip to content

Commit 206fcd5

Browse files
committed
Fix issue that makes focusmode unusable in versions before Komodo 9.2
1 parent f78335b commit 206fcd5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bootstrap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var startupData;
66
function loadIntoWindow(window) {
77
try {
88
window.require.setRequirePath("focusmode/", "chrome://focusmode/content/");
9-
window.require("focusmode").register();
9+
window.require("focusmode/focusmode").register();
1010
} catch (e) {
1111
Cu.reportError("Exception while registering Focus Mode");
1212
Cu.reportError(e);

install.rdf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Description about="urn:mozilla:install-manifest">
55
<em:id>[email protected]</em:id>
66
<em:name>Focus Mode</em:name>
7-
<em:version>1.0</em:version>
7+
<em:version>1.0.1</em:version>
88
<em:description>Adds a toggle that enables/disables all non-essential UI elements</em:description>
99
<em:creator>Nathan Rijksen</em:creator>
1010
<em:homepageURL>http://www.activestate.com/komodo-ide</em:homepageURL>

0 commit comments

Comments
 (0)