1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-23 18:53:32 +01:00

Fix help page titles.

This commit is contained in:
Kris Maglione
2010-09-30 08:55:54 -04:00
parent 631abed98d
commit 23458b23d8

View File

@@ -126,14 +126,15 @@
<xsl:copy-of select="$root/node()"/> <xsl:copy-of select="$root/node()"/>
</dactyl:document> </dactyl:document>
</xsl:variable> </xsl:variable>
<xsl:variable name="root2" select="exsl:node-set($doc2)/dactyl:document"/>
<html dactyl:highlight="Help"> <html dactyl:highlight="Help">
<head> <head>
<title><xsl:value-of select="@title"/></title> <title><xsl:value-of select="/dactyl:document/@title"/></title>
<script type="text/javascript" src="chrome://dactyl/content/help.js"/> <script type="text/javascript" src="chrome://dactyl/content/help.js"/>
</head> </head>
<body dactyl:highlight="HelpBody"> <body dactyl:highlight="HelpBody">
<xsl:apply-templates select="exsl:node-set($doc2)/dactyl:document/node()" mode="help-1"/> <xsl:apply-templates select="$root2/node()|$root2/@*" mode="help-1"/>
</body> </body>
</html> </html>
</xsl:template> </xsl:template>