angular-material-npfixed
Version:
The Angular Material project is an implementation of Material Design in Angular.js. This project provides a set of reusable, well-tested, and accessible Material Design UI components. Angular Material is supported internally at Google by the Angular.js, M
35 lines (28 loc) • 815 B
HTML
{%- if doc.methods %}
<section class="api-section">
<h2>Methods</h2>
<br/>
<ul class="methods">
{%- for method in doc.methods %}
<li id="{$ method.name $}">
<h3 class="method-function-syntax">
<code class="method-function-syntax">{$ doc.name $}.{$ functionSyntax(method) $}</code>
</h3>
<div class="service-desc">{$ method.description | marked $}</div>
<div class="method-param-table">
{% if method.params %}
{$ paramTable(method.params) $}
{% endif %}
{% if method.this %}
<h4>Method's {% code %}this{% endcode %}</h4>
{$ method.this | marked $}
{% endif %}
{% if method.returns %}
{$ returnTable(method.returns) $}
{% endif %}
</div>
</li>
{% endfor -%}
</ul>
</section>
{%- endif -%}