19 lines
638 B
HTML
19 lines
638 B
HTML
<div class="dropdown-input nested-dropdown">
|
|
<button type="button" class="dropdown-input__button"
|
|
ng-click="toggleDropdown()"
|
|
ng-enter="toggleDropdown()"
|
|
aria-haspopup="true" aria-expanded="{{isOpen}}"
|
|
ng-disabled="dropdownOptions.length === 1">
|
|
{{selectedOption.name | i18n}}
|
|
</button>
|
|
<ul ng-show="isOpen">
|
|
<li role="menuitem"
|
|
ng-click="selectOption(option)"
|
|
ng-enter="selectOption(option)"
|
|
ng-repeat="option in dropdownOptions"
|
|
ng-class="{'option-selected': option.id === selectedOption.id}"
|
|
tabindex="0">
|
|
{{option.name | i18n}}
|
|
</li>
|
|
</ul>
|
|
</div> |