diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/content/about.xul | 4 | ||||
-rw-r--r-- | common/content/dactyl.js | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/common/content/about.xul b/common/content/about.xul index 353a2eea..433402c8 100644 --- a/common/content/about.xul +++ b/common/content/about.xul @@ -22,9 +22,7 @@ by Kris Maglione, Doug Kearns, et al. type :q<<span class="key">Enter</span>> to exit <!----> type :help<<span class="key">Enter</span>> or <<span class="key">F1</span>> for on-line help type :help faq<<span class="key">Enter</span>> for the FAQ page -<!-- -type :help version-&dactyl.version;<<span class="key">Enter</span>> for version info ---> +type :help versions<<span class="key">Enter</span>> for version info </div> <spring flex="1"/> </hbox> diff --git a/common/content/dactyl.js b/common/content/dactyl.js index 332f5672..6293114c 100644 --- a/common/content/dactyl.js +++ b/common/content/dactyl.js @@ -708,13 +708,14 @@ var Dactyl = Module("dactyl", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), { unescape(encodeURI( // UTF-8 handling hack. <document xmlns={NS} name="versions" title={config.appName + " Versions"}> - <h1 tag="versions">Versions</h1> + <h1 tag="versions news">{config.appName} Versions</h1> <toc start="2"/> {rec(NEWS, 0)} </document>.toXMLString())) ] } + addTags("versions", util.httpGet("dactyl://help/versions").responseXML); default xml namespace = NS; |