1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-19 13:19:43 +02:00
documize/gui/app/templates/components/ui/ui-checkbox.hbs
2022-01-11 12:40:52 -05:00

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>