mirror of
https://github.com/jsdoc/jsdoc.git
synced 2026-02-01 16:45:41 +00:00
git-svn-id: https://jsdoc.googlecode.com/svn/trunk/@18 d5942f49-e6af-b5c1-9d01-85772c7ca168
28 lines
563 B
Cheetah
28 lines
563 B
Cheetah
<li>
|
|
<?js if (this.description) { ?>
|
|
<div class="param-desc">
|
|
<?js= description ?>
|
|
</div>
|
|
<?js } ?>
|
|
|
|
<?js
|
|
if (typeof this.names !== 'undefined') {
|
|
?>
|
|
<dl>
|
|
<dt>
|
|
Type
|
|
</dt>
|
|
<dd>
|
|
<?js
|
|
this.names.forEach(function(name, i) {
|
|
?>
|
|
<span class="param-type"><?js= name ?></span> <?js if (i < this.names.length-1) print('|'); ?>
|
|
<?js
|
|
});
|
|
?>
|
|
</dd>
|
|
</dl>
|
|
<?js
|
|
}
|
|
?>
|
|
</li> |