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
26 lines (22 loc) • 738 B
HTML
{% include "lib/macros.html" -%}
{% extends "api/api.template.html" %}
{% block additional %}
<h3>In HTML Template Binding</h3>
{% if doc.usage %}
{$ doc.usage | code $}
{% else %}
{% code -%}
{{ {$ doc.name $}_expression | {$ doc.name $}
{%- for param in doc.params %}{% if not loop.first %} : {$ param.name $}{% endif %}{% endfor -%}
}}
{%- endcode %}
{% endif %}
<h3>In JavaScript</h3>
{% code -%}
{%- set sep = joiner(', ') -%}
$filter('{$ doc.name $}')({% for param in doc.params %}{$ sep() $}{$ param.name $}{% endfor -%})
{%- endcode %}
{% include "lib/params.template.html" %}
{% include "lib/this.template.html" %}
{% include "lib/returns.template.html" %}
{% endblock %}