This renames the doc task to apidoc. The apidoc delegates to jsdoc3 currently. We will have additional documentation that is not built by jsdoc3. It makes sense to reserve the more general 'doc' name for building all documentation (not just apidoc).
19 lines
268 B
Cheetah
19 lines
268 B
Cheetah
<?js
|
|
var data = obj;
|
|
if (data.description) {
|
|
?>
|
|
<div class="param-desc">
|
|
<?js= description ?>
|
|
</div>
|
|
<?js } ?>
|
|
|
|
<?js if (data.type && data.type.names) {?>
|
|
<dl>
|
|
<dt>
|
|
Type
|
|
</dt>
|
|
<dd>
|
|
<?js= this.partial('type.tmpl', data.type.names) ?>
|
|
</dd>
|
|
</dl>
|
|
<?js } ?> |