1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-09 07:54:12 +01:00

Halve the security errors at startup, but still annoyingly many of them.

This commit is contained in:
Kris Maglione
2009-11-14 04:56:44 -05:00
parent 91fd0e1169
commit 1d783600fb
4 changed files with 54 additions and 14 deletions

View File

@@ -92,12 +92,6 @@ window.addEventListener("load", function () {
function init(mod, module)
function () module.INIT[mod].call(modules[module.name], modules[mod]);
function init(mod, module)
function () {
if (!(mod in modules))
dump(mod + " not in modules");
return module.INIT[mod].call(modules[module.name], modules[mod]);
}
for (let mod in values(loaded)) {
try {
if (mod in module.INIT)