Files
ionic-framework/scripts/docs/templates/lib/methods.template.html
2015-09-01 15:07:11 -05:00

27 lines
419 B
HTML

<@- if doc.methods @>
## Methods
<@- for method in doc.methods @>
<div id="<$ method.name $>"></div>
<h2>
<$ functionSyntax(method) $>
</h2>
<$ method.description $>
<@ if method.params @>
<$ paramTable(method.params) $>
<@ endif @>
<@ if method.this @>
#### Method's `this`
<$ method.this $>
<@ endif @>
<@ if method.returns @>
* Returns: <$ typeInfo(method.returns) $>
<@ endif @>
<@ endfor -@>
<@- endif -@>