Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit 95156b7

Browse files
committed
Update match-multiple.tpl.html
Fix to prevent clicks being swallowed when clicking on the 'x' within the multiple select pill.
1 parent 36ee169 commit 95156b7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/bootstrap/match-multiple.tpl.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<span class="ui-select-match">
22
<span ng-repeat="$item in $select.selected">
3-
<button
3+
<span
44
style="margin-right: 3px;"
55
class="ui-select-match-item btn btn-default btn-xs"
66
tabindex="-1"
@@ -10,6 +10,6 @@
1010
ng-class="{'btn-primary':$select.activeMatchIndex === $index}">
1111
<span class="close ui-select-match-close" ng-hide="$select.disabled" ng-click="$select.removeChoice($index)">&nbsp;&times;</span>
1212
<span uis-transclude-append></span>
13-
</button>
13+
</span>
1414
</span>
15-
</span>
15+
</span>

0 commit comments

Comments
 (0)