1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 08:14:13 +01:00

[bootstrap] Minor fixes.

--HG--
branch : bootstrapped
This commit is contained in:
Kris Maglione
2010-12-24 20:37:39 -05:00
parent adeb5f7dd2
commit d0b5a5b209
4 changed files with 37 additions and 28 deletions

View File

@@ -932,11 +932,13 @@ const Util = Module("Util", XPCOM([Ci.nsIObserver, Ci.nsISupportsWeakReference])
},
"dactyl-rehash": function () {
util.dump("dactyl: util: observe: dactyl-rehash");
for (let module in values(defineModule.modules))
for (let module in values(defineModule.modules)) {
util.dump("dactyl: util: init(" + module + ")");
if (module.reinit)
module.reinit();
else
module.init();
}
},
"toplevel-window-ready": function (window, data) {
window.addEventListener("DOMContentLoaded", wrapCallback(function listener(event) {