mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-18 14:17:30 +00:00
20 lines
633 B
Plaintext
20 lines
633 B
Plaintext
<div class="clearfix">
|
|
<% members.forEach(function(member) { %>
|
|
<div class='border-bottom' id='<%- member.namespace %>'>
|
|
<div class="clearfix small pointer toggle-sibling">
|
|
<div class="py1 contain">
|
|
<a class='icon pin-right py1 dark-link caret-right'>▸</a>
|
|
<span class='code strong strong truncate'><%= shortSignature(member) %></span>
|
|
</div>
|
|
</div>
|
|
<div class="clearfix display-none toggle-target">
|
|
<%= renderSection({
|
|
section: member,
|
|
renderSection: renderSection,
|
|
nested: true
|
|
}) %>
|
|
</div>
|
|
</div>
|
|
<% }) %>
|
|
</div>
|