Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
  • Loading branch information
esx committed Feb 13, 2014
commit 76ec357bd9d08670e37b161129bf45ce8f08c693
2 changes: 1 addition & 1 deletion tasks/jquery-xml/entries2html-base.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@
<xsl:for-each select="argument">
<xsl:if test="position() &gt; 1">, </xsl:if>
<a href="http://api.jquery.com/Types/#{@type}">
<xsl:value-of select="@type"/>
<xsl:call-template name="render-types"/>
</a>
<xsl:text> </xsl:text>
<xsl:value-of select="@name"/>
Expand Down