Skip to content
Snippets Groups Projects
exceptions.tmpl 457 B
Newer Older
  • Learn to ignore specific revisions
  • Laura Cappelli's avatar
    Laura Cappelli committed
    <?js if (data.description) { ?>
    <div class="param-desc">
        <?js= description ?>
    </div>
    <?js } ?>
    
    <?js if (data.type && data.type.names) { ?>
    <dl>
    	<dt>
    		Type
    	</dt>
    	<dd>
    		<?js
    			var typeNames = data.type.names,
                    self = this;
    			typeNames.forEach(function(name, i) { ?>
    		<span class="param-type"><?js= self.linkto(name, self.htmlsafe(name)) ?></span> <?js if (i < typeNames.length-1) { ?>|<?js } ?>
    		<?js }); ?>
    	</dd>
    </dl>
    <?js } ?>