Skip to content

Commit dc7e51d

Browse files
committed
disable opacity set to zero cause of flickering when typing in ddl see (angular-ui#1298)
1 parent 4467b82 commit dc7e51d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/uiSelectDirective.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ uis.directive('uiSelect',
300300
}
301301

302302
// Hide the dropdown so there is no flicker until $timeout is done executing.
303-
dropdown[0].style.opacity = 0;
303+
//dropdown[0].style.opacity = 0;
304304

305305
// Delay positioning the dropdown until all choices have been added so its height is correct.
306306
$timeout(function(){

0 commit comments

Comments
 (0)