Skip to content

Commit 287febf

Browse files
committed
Update search disabled example to remove search attributes
1 parent 24975b5 commit 287febf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/bootstrap.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@
6363

6464
<ui-select ng-model="person.selected" theme="bootstrap" search-enabled="false">
6565
<ui-select-match placeholder="Select or search a person in the list...">{{$select.selected.name}}</ui-select-match>
66-
<ui-select-choices repeat="item in people | filter: $select.search">
67-
<div ng-bind-html="item.name | highlight: $select.search"></div>
68-
<small ng-bind-html="item.email | highlight: $select.search"></small>
66+
<ui-select-choices repeat="item in people">
67+
<div ng-bind-html="item.name"></div>
68+
<small ng-bind-html="item.email"></small>
6969
</ui-select-choices>
7070
</ui-select>
7171

0 commit comments

Comments
 (0)