1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-16 04:53:33 +01:00

Fix Xulmus, etc.

--HG--
branch : xslt
This commit is contained in:
Kris Maglione
2009-10-25 13:43:25 -04:00
parent 6cadd9c84b
commit 9e531ca343
14 changed files with 66 additions and 69 deletions

View File

@@ -215,7 +215,7 @@ const liberator = (function () //{{{
options.add(["helpfile", "hf"],
"Name of the main help file",
"string", "intro");
"string", "intro.html");
options.add(["loadplugins", "lpl"],
"Load plugin scripts when starting up",
@@ -1389,7 +1389,7 @@ const liberator = (function () //{{{
{
let helpFile = options["helpfile"];
if (config.helpFiles.indexOf(helpFile) != -1)
liberator.open("liberator://help/" + helpFile, { from: "help" });
liberator.open("liberator://help/" + helpFile.replace(/\.html$/, ""), { from: "help" });
else
liberator.echomsg("Sorry, help file " + helpFile.quote() + " not found");
return;