mirror of
https://github.com/documize/community.git
synced 2025-07-19 13:19:43 +02:00
8 lines
310 B
Handlebars
8 lines
310 B
Handlebars
<div class="ui-checkbox {{if selected "ui-checkbox-selected"}}" {{action "onCheck"}} role="checkbox" tabindex="0">
|
|
{{#if selected}}
|
|
<i class="dicon {{constants.Icon.CheckboxChecked}} selected" />
|
|
{{else}}
|
|
<i class="dicon {{constants.Icon.Checkbox}}" />
|
|
{{/if}}
|
|
<div class="text">{{yield}}</div>
|
|
</div>
|