Skip to content

Commit

Permalink
'Type' column is empty allenhwkim#87
Browse files Browse the repository at this point in the history
  • Loading branch information
PKaczmarekS committed Oct 18, 2016
1 parent 4089c97 commit b28f536
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions default/html/class.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ <h5>Dependencies:</h5>
<tr>
<td class="name" nowrap><%= param.name %></td>
<td class="type"><span class="param-type">
<%= param.type && param.type.names.join(" | ") %>
<%= param.typeDefinitionUrl %>
</span></td>
<td class="description last"><%= param.description %></td>
</tr>
Expand All @@ -35,7 +35,7 @@ <h5>Properties:</h5>
<tr>
<td class="name" nowrap><%= prop.name %></td>
<td class="type"><span class="param-type">
<%= prop.type && prop.type.names.join(" | ") %>
<%= prop.typeDefinitionUrl %>
</span></td>
<td class="description last"><%= prop.description %></td>
</tr>
Expand All @@ -54,7 +54,7 @@ <h5>Attributes:</h5>
<tr>
<td class="name" nowrap><%= attr.name %></td>
<td class="type"><span class="param-type">
<%= attr.type && attr.type.names.join(" | ") %>
<%= attr.typeDefinitionUrl %>
</span></td>
<td class="description last"><%= marked(attr.description||'') %></td>
</tr>
Expand Down Expand Up @@ -150,7 +150,7 @@ <h5>Parameters:</h5>
<tr>
<td class="name"><%= param.name %></td>
<td class="type"><span class="param-type">
<%= param.type && param.type.names.join(" | ") %>
<%= param.typeDefinitionUrl %>
</span></td>
<td class="description last"><%= param.description %></td>
</tr>
Expand Down

0 comments on commit b28f536

Please sign in to comment.