Skip to content

Commit 76ec357

Browse files
committed
Fix template for parameter types in callbacks
Support for multiple types (like 'Number or String') in callback signatures. Se for example signatures in documentation for jQuery.map.
1 parent a87f849 commit 76ec357

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/jquery-xml/entries2html-base.xsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@
723723
<xsl:for-each select="argument">
724724
<xsl:if test="position() &gt; 1">, </xsl:if>
725725
<a href="http://api.jquery.com/Types/#{@type}">
726-
<xsl:value-of select="@type"/>
726+
<xsl:call-template name="render-types"/>
727727
</a>
728728
<xsl:text> </xsl:text>
729729
<xsl:value-of select="@name"/>

0 commit comments

Comments
 (0)