diff options
author | Kris Maglione <maglione.k@gmail.com> | 2010-12-30 21:34:13 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2010-12-30 21:34:13 -0500 |
commit | 47288b3456a1734f08a8f13e906627721790b40f (patch) | |
tree | 4eb2b43a6b5d9013f8805be38bc30acc496eb082 /common/bootstrap.js | |
parent | 04731384f6970519a08eed03db222b4f8eed8de9 (diff) | |
download | pentadactyl-47288b3456a1734f08a8f13e906627721790b40f.tar.gz |
Mangle pathnames in the XPI to foil the fastload cache on upgrade and fix the command line option handler in fresh installs.
Diffstat (limited to 'common/bootstrap.js')
-rwxr-xr-x | common/bootstrap.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/bootstrap.js b/common/bootstrap.js index e356cfac..76f9c5c7 100755 --- a/common/bootstrap.js +++ b/common/bootstrap.js @@ -99,6 +99,7 @@ FactoryProxy.prototype = { }, get module() { try { + dump("dactyl: bootstrap: create module: " + this.contractID + "\n"); Object.defineProperty(this, "module", { value: {}, enumerable: true }); JSMLoader.load(this.url, this.module); JSMLoader.registerGlobal(this.url, this.module.global); |