Skip to content

Commit d76e388

Browse files
committed
Drop support for Array<Function> from xslt, backported too much in previous commit
1 parent 52576f0 commit d76e388

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

entries2html.xsl

-11
Original file line numberDiff line numberDiff line change
@@ -96,17 +96,6 @@
9696
<xsl:call-template name="render-return-types" />
9797
</xsl:if>
9898
</xsl:when>
99-
<!--
100-
If the type is "Array" and it has child type elements
101-
we display it as "Array of String" (or whatever the sub-type is)
102-
-->
103-
<xsl:when test="$typename = 'Array'">
104-
<xsl:value-of select="$typename"/>
105-
<xsl:if test="type">
106-
<text> of </text>
107-
<xsl:call-template name="render-types" />
108-
</xsl:if>
109-
</xsl:when>
11099
<xsl:otherwise>
111100
<!-- not function - just display typename -->
112101
<a href="http://api.jquery.com/Types#{$typename}"><xsl:value-of select="$typename" /></a>

0 commit comments

Comments
 (0)