discourse/app/assets/javascripts/wizard/templates/components/font-previews.hbs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
433 B
Handlebars
Raw Normal View History

<ul class="grid">
{{#each field.choices as |choice|}}
<li>
{{font-preview wizard=wizard
fontId=choice.id
selectedId=field.value
onChange=(action "changed")}}
{{radio-button radioValue=choice.id
label=choice.label
value=field.value
onChange=(action "changed")}}
</li>
{{/each}}
</ul>