We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52576f0 commit d76e388Copy full SHA for d76e388
entries2html.xsl
@@ -96,17 +96,6 @@
96
<xsl:call-template name="render-return-types" />
97
</xsl:if>
98
</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>
110
<xsl:otherwise>
111
<!-- not function - just display typename -->
112
<a href="http://api.jquery.com/Types#{$typename}"><xsl:value-of select="$typename" /></a>
0 commit comments