diff --git a/common/content/dactyl.js b/common/content/dactyl.js
index 3217ede0..47879022 100644
--- a/common/content/dactyl.js
+++ b/common/content/dactyl.js
@@ -790,7 +790,7 @@ var Dactyl = Module("dactyl", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), {
}
}
else if (obj instanceof Option) {
- link = function (opt) {opt};
+ link = function (opt, name) {name};
}
XML.prettyPrinting = false;
@@ -802,7 +802,7 @@ var Dactyl = Module("dactyl", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), {
>;
let res =
- {link(obj.helpTag || obj.name)} {
+ {link(obj.helpTag || obj.name, obj.name)} {
template.linkifyHelp(obj.description ? obj.description.replace(/\.$/, "") : "", true)
};
if (specOnly)