1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 11:27:58 +01:00

whitespace and semicolon fixes

This commit is contained in:
Doug Kearns
2008-11-02 11:54:56 +00:00
parent d52466188e
commit 6dfc33035b
12 changed files with 41 additions and 40 deletions

View File

@@ -336,7 +336,9 @@ function Hints() //{{{
return false;
}
else if (validHints.length > 1)
{
return false;
}
}
var timeout = followFirst || events.feedingKeys ? 0 : 500;
@@ -598,15 +600,15 @@ function Hints() //{{{
mappings.add(myModes, ["f"],
"Start QuickHint mode",
function () { hints.show("o") });
function () { hints.show("o"); });
mappings.add(myModes, ["F"],
"Start QuickHint mode, but open link in a new tab",
function () { hints.show("t") });
function () { hints.show("t"); });
mappings.add(myModes, [";"],
"Start an extended hint mode",
function (arg) { hints.show(arg) },
function (arg) { hints.show(arg); },
{ flags: Mappings.flags.ARGUMENT });
/////////////////////////////////////////////////////////////////////////////}}}