Files
ionic-framework/docs/templates/lib/methods.template.html
2014-03-11 13:02:36 -06: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 -@>