summaryrefslogtreecommitdiff
path: root/common/components/protocols.js
diff options
context:
space:
mode:
authorKris Maglione <maglione.k@gmail.com>2011-01-17 21:40:54 -0500
committerKris Maglione <maglione.k@gmail.com>2011-01-17 21:40:54 -0500
commit35419ad23446405f3933b7caffb0c83d13cff145 (patch)
tree1e61c0d975f64793dd8672b76f28e20094399846 /common/components/protocols.js
parent41441f600c7ccb9d38d396ce03867549269b22b8 (diff)
downloadpentadactyl-35419ad23446405f3933b7caffb0c83d13cff145.tar.gz
Fix some more bootstrapping update bugs.
Diffstat (limited to 'common/components/protocols.js')
-rw-r--r--common/components/protocols.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/common/components/protocols.js b/common/components/protocols.js
index f22d11e4..14d504a4 100644
--- a/common/components/protocols.js
+++ b/common/components/protocols.js
@@ -115,8 +115,6 @@ function Dactyl() {
this.pages = {};
- Cu.import("resource://dactyl/bootstrap.jsm");
- JSMLoader.init();
JSMLoader.load("base.jsm", global);
require(global, "config");
require(global, "services");
@@ -194,6 +192,7 @@ Dactyl.prototype = {
observe: function observe(subject, topic, data) {
if (topic === "profile-after-change") {
Cu.import("resource://dactyl/bootstrap.jsm");
+ JSMLoader.init();
require(global, "overlay");
}
}