Sha256: 1fce7328bcb40c7a3848e380f38655bacf5dbbeaba6849fa2f115e2393c8d559
Contents?: true
Size: 1.98 KB
Versions: 8
Compression:
Stored size: 1.98 KB
Contents
{% include "lib/macros.html" -%} {% extends "api/api.template.html" %} {% block additional %} <h2>Directive Info</h2> <ul> {% if doc.scope %}<li>This directive creates new scope.</li>{% endif %} <li>This directive executes at priority level {$ doc.priority $}.</li> </ul> {% block usage %} <h2 id="usage">Usage</h2> <div class="usage"> {% if doc.usage %} {$ doc.usage | marked $} {% else %} <ul> {% if doc.restrict.element %} <li>as element: {% if doc.name.indexOf('ng') == 0 -%} (This directive can be used as custom element, but be aware of <a href="guide/ie">IE restrictions</a>). {%- endif %} {% code %} <{$ doc.name | dashCase $} {%- for param in doc.params %} {$ directiveParam(param.alias or param.name, param.type, '="', '"') $} {%- endfor %}> ... </{$ doc.name | dashCase $}> {% endcode %} </li> {% endif -%} {%- if doc.restrict.attribute -%} <li>as attribute: {% code %} <{$ doc.element $} {%- for param in doc.params %} {$ directiveParam(param.name, param.type, '="', '"') $} {%- endfor %}> ... </{$ doc.element $}> {% endcode %} </li> {% endif -%} {%- if doc.restrict.cssClass -%} <li>as CSS class: {% code %} {% set sep = joiner(' ') %} <{$ doc.element $} class=" {%- for param in doc.params -%} {$ sep() $}{$ directiveParam(param.name, param.type, ': ', ';') $} {%- endfor %}"> ... </{$ doc.element $}> {% endcode %} </li> {% endif -%} {%- endif %} </div> {% endblock -%} {%- if doc.animations %} <h2 id="animations">Animations</h2> {$ doc.animations | marked $} {$ 'module:ngAnimate.$animate' | link('Click here', doc) $} to learn more about the steps involved in the animation. {%- endif -%} {% include "lib/params.template.html" %} {% include "lib/events.template.html" %} {% endblock %}
Version data entries
8 entries across 8 versions & 1 rubygems