mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
17 lines
684 B
Handlebars
17 lines
684 B
Handlebars
{{#if select.loading}}
|
|
{{#if loadingMessage}}
|
|
<li class="ember-power-select-option ember-power-select-option--loading-message" role="option">{{loadingMessage}}</li>
|
|
{{/if}}
|
|
{{/if}}
|
|
|
|
{{#vertical-collection options minHeight=30 estimateHeight=6 bufferSize=10 as |opt index|}}
|
|
<li class="ember-power-select-option"
|
|
aria-selected="{{ember-power-select-is-selected opt select.selected}}"
|
|
aria-disabled={{ember-power-select-true-string-if-present opt.disabled}}
|
|
aria-current="{{eq opt select.highlighted}}"
|
|
data-option-index="{{groupIndex}}{{index}}"
|
|
role="option">
|
|
{{yield opt select}}
|
|
</li>
|
|
{{/vertical-collection}}
|