2015-09-30 04:13:23 -04:00
|
|
|
{% include "lib/githubLinks.html" -%}
|
|
|
|
{% include "lib/paramList.html" -%}
|
|
|
|
{% extends 'class.template.html' -%}
|
|
|
|
|
|
|
|
{% block additional %}
|
|
|
|
.l-main-section
|
2015-11-03 09:40:42 -05:00
|
|
|
h2 Selectors
|
2015-09-30 04:13:23 -04:00
|
|
|
.l-sub-section
|
2015-11-03 09:40:42 -05:00
|
|
|
{% for selector in doc.directiveOptions.selector.split(',') %}
|
2015-09-30 04:13:23 -04:00
|
|
|
h3.selector
|
2015-11-03 09:40:42 -05:00
|
|
|
code {$ selector $}
|
|
|
|
{% endfor %}
|
2015-09-30 04:13:23 -04:00
|
|
|
|
2015-11-03 18:32:56 -05:00
|
|
|
{% if doc.inputs %}
|
2015-09-30 04:13:23 -04:00
|
|
|
.l-main-section
|
|
|
|
h2 Inputs
|
2015-11-03 18:32:56 -05:00
|
|
|
.l-sub-section{% for binding, property in doc.inputs %}
|
|
|
|
h3.input
|
2015-09-30 04:13:23 -04:00
|
|
|
code {$ property.bindingName | dashCase $}
|
|
|
|
| bound to
|
|
|
|
code {$ property.memberDoc.classDoc.name $}.{$ property.propertyName $}
|
|
|
|
:markdown
|
|
|
|
{$ property.memberDoc.description | indentForMarkdown(2) | trimBlankLines $}
|
|
|
|
{% endfor %}
|
2015-11-03 09:40:42 -05:00
|
|
|
{% endif %}
|
2015-09-30 04:13:23 -04:00
|
|
|
|
2015-11-03 18:32:56 -05:00
|
|
|
{% if doc.outputs %}
|
2015-09-30 04:13:23 -04:00
|
|
|
.l-main-section
|
|
|
|
h2 Outputs
|
2015-11-03 18:32:56 -05:00
|
|
|
.l-sub-section{% for binding, property in doc.outputs %}
|
|
|
|
h3.output
|
2015-09-30 04:13:23 -04:00
|
|
|
code {$ property.bindingName | dashCase $}
|
|
|
|
| bound to
|
|
|
|
code {$ property.memberDoc.classDoc.name $}.{$ property.propertyName $}
|
|
|
|
:markdown
|
|
|
|
{$ event.memberDoc.description | indentForMarkdown(2) | trimBlankLines $}
|
2015-11-03 09:40:42 -05:00
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2015-09-30 04:13:23 -04:00
|
|
|
{% endblock %}
|