1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 23:17:59 +01:00

Bump JSMLoader.bump.

This commit is contained in:
Kris Maglione
2011-08-21 03:08:37 -04:00
parent af62c1a5f6
commit 9a378d467c
3 changed files with 4 additions and 4 deletions

4
common/bootstrap.js vendored
View File

@@ -202,12 +202,12 @@ function init() {
for (let [name] in Iterator(JSMLoader.globals))
Cu.unload(~name.indexOf(":") ? name : "resource://dactyl" + JSMLoader.suffix + "/" + name);
}
else if (JSMLoader.bump != 5) // Temporary hack
else if (JSMLoader.bump != 6) // Temporary hack
Services.scriptloader.loadSubScript("resource://dactyl" + suffix + "/bootstrap.jsm",
Cu.import(BOOTSTRAP_JSM, global));
}
if (!JSMLoader || JSMLoader.bump !== 5 || Cu.unload)
if (!JSMLoader || JSMLoader.bump !== 6 || Cu.unload)
Cu.import(BOOTSTRAP_JSM, global);
JSMLoader.bootstrap = this;