2017-01-27 09:51:41 -05:00
|
|
|
{% if doc.inputs %}
|
2017-04-24 13:49:37 -04:00
|
|
|
<div class="inputs api-section">
|
|
|
|
<h2>Inputs</h2>
|
|
|
|
{% 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 $}
|
2017-04-20 15:20:27 -04:00
|
|
|
</div>
|
2017-04-24 13:49:37 -04:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2017-01-27 09:51:41 -05:00
|
|
|
{% endif %}
|