Skip to content

Commit

Permalink
disable opacity set to zero cause of flickering when typing in ddl see (
Browse files Browse the repository at this point in the history
  • Loading branch information
onemenny committed Dec 9, 2015
1 parent 4467b82 commit dc7e51d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/uiSelectDirective.js
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ uis.directive('uiSelect',
}

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

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

0 comments on commit dc7e51d

Please sign in to comment.