discourse/app/assets/javascripts/select-kit/templates/components/multi-select/multi-select-header.hbs
Joffrey JAFFEUX d48542796e
FIX: select-kit refactoring
- improve mini-tag-chooser keyboard behavior
- all multil select now respond to select all and left/right arrows
- improve events handling
- many minor tweaks
2018-03-22 11:29:55 +01:00

12 lines
331 B
Handlebars

<div class="choices">
{{#each computedContent.selection as |selection|}}
{{component selectedNameComponent
onClickSelectionItem=onClickSelectionItem
highlightedSelection=highlightedSelection
computedContent=selection}}
{{/each}}
<span class="filter choice" tabindex="-1">
{{yield}}
</span>
</div>