1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-24 08:12:29 +01:00

Tie up some, but not nearly all, of the loose ends that were accidentally committed in revision 185600dddcf7.

This commit is contained in:
Kris Maglione
2011-01-10 21:04:48 -05:00
parent fda5f5827b
commit 96350d49be
2 changed files with 6 additions and 4 deletions

View File

@@ -30,9 +30,9 @@ if (!JSMLoader || JSMLoader.bump != 1)
url = "resource://dactyl" + this.suffix + "/" + url;
let stale = this.stale[url];
dump("JSMLoader: load " + name + " " + stale + "\n");
dump("JSMLoader: load " + name + " " + this.getTarget(url) + "\n");
if (stale) {
dump("JSMLoader: load " + name + " " + stale + "\n");
dump("JSMLoader: load " + name + " " + this.getTarget(url) + "\n");
delete this.stale[url];
let global = this.globals[url];
@@ -51,7 +51,6 @@ if (!JSMLoader || JSMLoader.bump != 1)
Components.classes["@mozilla.org/moz/jssubscript-loader;1"]
.getService(Components.interfaces.mozIJSSubScriptLoader)
.loadSubScript(url, global.global || global);
dump("JSMLoader: load " + name + " " + global.EXPORTED_SYMBOLS + "\n");
}
let global = Components.utils.import(url, target);