diff options
Diffstat (limited to 'plugins/javadoc/src/main/resources/views/components')
-rw-r--r-- | plugins/javadoc/src/main/resources/views/components/indexTable.korte | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/plugins/javadoc/src/main/resources/views/components/indexTable.korte b/plugins/javadoc/src/main/resources/views/components/indexTable.korte index e1b507b9..21c94b7c 100644 --- a/plugins/javadoc/src/main/resources/views/components/indexTable.korte +++ b/plugins/javadoc/src/main/resources/views/components/indexTable.korte @@ -1,8 +1,7 @@ {% if isTypeSummary %} - <table class="typeSummary"> -{% else %} - <table> + <div class="typeSummary"> {% endif %} +<table> <caption><span>{{ tabTitle }}</span><span class="tabEnd"> </span></caption> <tr> <th class="colFirst" scope="col">{{ colTitle }}</th> @@ -13,4 +12,7 @@ <tr class="{{ rowColor(loop.index0) }}">{{ createTabRow(item, contextRoot)|raw }}</tr> {% end -%} </tbody> -</table>
\ No newline at end of file +</table> +{% if isTypeSummary %} + </div> +{% endif %}
\ No newline at end of file |