Made sure ctrlaltdavid's changes made it into my repo

This commit is contained in:
ingerjm0 2019-09-05 13:54:55 -07:00
parent b8b7dbf681
commit 55bdc7d2a6

View file

@ -94,6 +94,10 @@
</table> </table>
<?js= self.partial('details.tmpl', doc) ?> <?js= self.partial('details.tmpl', doc) ?>
<?js if (doc.examples && doc.examples.length) { ?>
<h3>Example<?js= doc.examples.length > 1? 's':'' ?></h3>
<?js= self.partial('examples.tmpl', doc.examples) ?>
<?js } ?>
<?js } else { ?> <?js } else { ?>
<h3>Description</h3> <h3>Description</h3>
<?js if (doc.description) { ?> <?js if (doc.description) { ?>
@ -184,7 +188,7 @@
<h3 class="subsection-title">Members</h3> <h3 class="subsection-title">Members</h3>
<?js members.forEach(function(p) { ?> <?js members.forEach(function(p) { ?>
<?js= self.partial('members.tmpl', p) ?> <?js= self.partial('method.tmpl', p) ?>
<?js }); ?> <?js }); ?>
<?js } ?> <?js } ?>