Files
ui-bootstrap4/template/typeahead/typeahead.html
T
Pawel Kozlowski b0745c8e05 chore(*): normalize line endings
Closes #423
2013-05-20 21:42:16 +02:00

5 lines
388 B
HTML

<ul class="typeahead dropdown-menu" ng-style="{display: isOpen()&&'block' || 'none', top: position.top+'px', left: position.left+'px'}">
<li ng-repeat="match in matches" ng-class="{active: isActive($index) }" ng-mouseenter="selectActive($index)">
<a tabindex="-1" ng-click="selectMatch($index)" ng-bind-html-unsafe="match.label | typeaheadHighlight:query"></a>
</li>
</ul>