Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit e9e47c7

Browse files
committed
Adding an open class to the select wrap so that we the list is open I can change how positioning works. This will let me wrap the entire select and the ng-blur will work properly.
1 parent 440b6c4 commit e9e47c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/components/inputs/select/select.ng1.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<label ng-show="select.selection" class="label-slide angular-animate">
33
{{::select.label}}
44
</label>
5-
<div class="rl-select-wrap" tabindex="0" ng-blur="select.close()">
5+
<div class="rl-select-wrap" ng-class="{ 'rl-select-wrap-open': select.showOptions }" tabindex="0" ng-blur="select.close()">
66
<div class="form-control rl-select-trigger"
77
ng-class="{ 'disabled': select.ngDisabled, 'rl-select-open': select.showOptions }"
88
ng-mousedown="select.toggle()">

0 commit comments

Comments
 (0)