1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-06 09:15:50 +01:00

Fix help system.

Broken in revision 40e49837cafd.
This commit is contained in:
Doug Kearns
2011-01-10 18:21:13 +11:00
parent 7254ce5910
commit 5de50b67bb

View File

@@ -563,12 +563,12 @@ var Dactyl = Module("dactyl", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), {
noscriptOverlay.safeAllow("dactyl:", true, false); noscriptOverlay.safeAllow("dactyl:", true, false);
} }
let namespaces = ["locale-local", "locale"]; var namespaces = ["locale-local", "locale"];
services["dactyl:"].init({}); services["dactyl:"].init({});
let tagMap = services["dactyl:"].HELP_TAGS; var tagMap = services["dactyl:"].HELP_TAGS;
let fileMap = services["dactyl:"].FILE_MAP; var fileMap = services["dactyl:"].FILE_MAP;
let overlayMap = services["dactyl:"].OVERLAY_MAP; var overlayMap = services["dactyl:"].OVERLAY_MAP;
// Scrape the list of help files from all.xml // Scrape the list of help files from all.xml
// Manually process main and overlay files, since XSLTProcessor and // Manually process main and overlay files, since XSLTProcessor and