13 lines
304 B
Handlebars
13 lines
304 B
Handlebars
<input
|
|
...attributes
|
|
{{ref this "input"}}
|
|
type="checkbox"
|
|
checked={{if checked 'checked' undefined}}
|
|
id={{concat 'toggle-button-' guid}}
|
|
onchange={{action 'change'}}
|
|
/>
|
|
<label {{ref this "label"}} for={{concat 'toggle-button-' guid}}>
|
|
{{yield (hash
|
|
click=(action 'click')
|
|
)}}
|
|
</label> |