We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2d1422d + 58de0d7 commit 76bf9daCopy full SHA for 76bf9da
src/uiSelectDirective.js
@@ -262,7 +262,7 @@ uis.directive('uiSelect',
262
}
263
264
// Hide the dropdown so there is no flicker until $timeout is done executing.
265
- dropdown[0].style.visibility = 'hidden';
+ dropdown[0].style.opacity = 0;
266
267
// Delay positioning the dropdown until all choices have been added so its height is correct.
268
$timeout(function(){
@@ -277,7 +277,7 @@ uis.directive('uiSelect',
277
278
279
// Display the dropdown once it has been positioned.
280
- dropdown[0].style.visibility = '';
+ dropdown[0].style.opacity = 1;
281
});
282
} else {
283
if (dropdown === null) {
0 commit comments