12 lines
386 B
HTML
Raw Normal View History

{% if doc.inputs %}
<section class="inputs">
2017-04-24 10:49:37 -07:00
<h2>Inputs</h2>
{% for binding, property in doc.inputs %}
<div class="input">
<code>{$ property.bindingName $}</code>&nbsp;bound to&nbsp;<code>{$ property.memberDoc.classDoc.name $}.{$ property.propertyName $}</code>
{$ property.memberDoc.description | trimBlankLines | marked $}
</div>
2017-04-24 10:49:37 -07:00
{% endfor %}
</section>
{% endif %}