2017-01-27 09:51:41 -05:00
|
|
|
{% if doc.inputs %}
|
2017-04-20 15:20:27 -04:00
|
|
|
<section class="inputs api-section">
|
|
|
|
<div class="api-section-header">
|
|
|
|
<h2>Inputs</h2>
|
|
|
|
</div>
|
|
|
|
<div class="api-section-content">
|
2017-01-27 09:51:41 -05:00
|
|
|
{% for binding, property in doc.inputs %}
|
|
|
|
<div class="input">
|
|
|
|
<code>{$ property.bindingName $}</code> bound to <code>{$ property.memberDoc.classDoc.name $}.{$ property.propertyName $}</code>
|
|
|
|
{$ property.memberDoc.description | trimBlankLines | marked $}
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
{% endif %}
|