diff options
author | Kris Maglione <maglione.k@gmail.com> | 2011-02-20 10:32:17 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2011-02-20 10:32:17 -0500 |
commit | 321296e7e508253612d549c572aecfadd3713d0e (patch) | |
tree | 4efb6af4fa53da84dc8ccc053f0ae3dc9c71f996 /common/modules/template.jsm | |
parent | 6317cbc0d8603083ecbf987cff485bf23af4f4be (diff) | |
download | pentadactyl-321296e7e508253612d549c572aecfadd3713d0e.tar.gz |
Show 'passkeys' state of key chains in :listkeys. Fix linkifyHelp link styling issues. Minor optimization for non-passkeys sites.
Diffstat (limited to 'common/modules/template.jsm')
-rw-r--r-- | common/modules/template.jsm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/modules/template.jsm b/common/modules/template.jsm index d05b1e63..f42adb9b 100644 --- a/common/modules/template.jsm +++ b/common/modules/template.jsm @@ -221,7 +221,7 @@ var Template = Module("Template", { /^\[.*\]$/.test(token) ? "HelpTopic" : /^:\w/.test(token) ? "HelpEx" : "HelpKey"); - return <a highlight={type} tag={topic} href={"dactyl://help-tag/" + topic} dactyl:command="dactyl.help" xmlns:dactyl={NS}>{text || topic}</a>; + return <a highlight={"InlineHelpLink " + type} tag={topic} href={"dactyl://help-tag/" + topic} dactyl:command="dactyl.help" xmlns:dactyl={NS}>{text || topic}</a>; }, HelpLink: function (token) { if (!services["dactyl:"].initialized) |