1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 16:47:59 +01:00

[bootstrap] Fix stupid bug.

--HG--
branch : bootstrapped
This commit is contained in:
Kris Maglione
2010-12-25 13:13:10 -05:00
parent 8da718d47b
commit 203f8799da
5 changed files with 20 additions and 15 deletions

2
common/bootstrap.js vendored
View File

@@ -95,7 +95,7 @@ FactoryProxy.prototype = {
get module() {
Object.defineProperty(this, "module", { value: {}, enumerable: true });
JSMLoader.load(this.url, this.module);
JSMLoader.registerGlobal(this.url, this.module.NSGetFactory);
JSMLoader.registerGlobal(this.url, this.module.global);
return this.module;
},
createInstance: function (iids) {