You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 2, 2019. It is now read-only.
// Hide the dropdown so there is no flicker until $timeout is done executing.dropdown[0].style.opacity=0;// Delay positioning the dropdown until all choices have been added so its height is correct.$timeout(function(){...// Display the dropdown once it has been positioned.dropdown[0].style.opacity=1;});