diff options
author | Kris Maglione <maglione.k@gmail.com> | 2010-12-29 21:10:25 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2010-12-29 21:10:25 -0500 |
commit | f9bbe484df24aec41534e4e5dd7343b70358d83c (patch) | |
tree | 9fcee7a4cac5a8e6a9ca8257b8019d4e1178e75c /common/bootstrap.js | |
parent | 727950d10a7e91e186b9b2df431e68ca1c9065ca (diff) | |
download | pentadactyl-f9bbe484df24aec41534e4e5dd7343b70358d83c.tar.gz |
Fix <C-[> passing and causing a history back event in command line mode. Fix reinitialization when not purging module globals.
Diffstat (limited to 'common/bootstrap.js')
-rwxr-xr-x | common/bootstrap.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/common/bootstrap.js b/common/bootstrap.js index 2b5d6402..4ce89386 100755 --- a/common/bootstrap.js +++ b/common/bootstrap.js @@ -147,13 +147,14 @@ function init() { } } - Services.obs.notifyObservers(null, "dactyl-rehash", null); - JSMLoader.load("resource://dactyl/base.jsm", global); for each (let component in components) component.register(); + Services.obs.notifyObservers(null, "dactyl-rehash", null); + JSMLoader.load("resource://dactyl/base.jsm", global); + require(global, "services"); let manifestText = result.map(function (line) line.join(" ")).join("\n"); |