mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-02-08 12:25:45 +01:00
Fix help link bugs, needs cleanup
This commit is contained in:
@@ -1414,6 +1414,21 @@ const liberator = (function () //{{{
|
||||
|
||||
window.liberator = liberator;
|
||||
|
||||
// FIXME: Ugly, etc.
|
||||
window.addEventListener("liberatorHelpLink", function (event) {
|
||||
let elem = event.target;
|
||||
liberator.dump(String(elem));
|
||||
if (/^(option|mapping|command)$/.test(elem.className))
|
||||
var tag = elem.textContent.replace(/\s.*/, "");
|
||||
if (elem.className == "command")
|
||||
tag = tag.replace(/\[.*?\]/g, "");
|
||||
if (tag)
|
||||
var page = liberator.findHelp(tag);
|
||||
if (page)
|
||||
elem.href = "chrome://liberator/locale/" + page;
|
||||
},
|
||||
true, true);
|
||||
|
||||
// called when the chrome is fully loaded and before the main window is shown
|
||||
window.addEventListener("load", liberator.startup, false);
|
||||
window.addEventListener("unload", liberator.shutdown, false);
|
||||
|
||||
@@ -57,7 +57,7 @@ function Timer(minInterval, maxInterval, callback)
|
||||
};
|
||||
this.tell = function (arg)
|
||||
{
|
||||
if (arg !== undefined)
|
||||
if (arguments.length > 0)
|
||||
this.arg = arg;
|
||||
|
||||
let now = Date.now();
|
||||
|
||||
Reference in New Issue
Block a user