Files
ionic-framework/docs/templates/lib/methods.template.html
2014-03-08 20:44:57 -07:00

26 lines
416 B
HTML

<@- if doc.methods @>
## Methods
<@- for method in doc.methods @>
<div id="<$ method.name $>"></div>
### <$ functionSyntax(method) $>
<$ 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 -@>