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.
From 0.14.0 the search input is not focused anymore when dropdown is opened. I tried to figure it out and it seems that the problem is:
varcontainer=$element.querySelectorAll('.ui-select-choices-content');if(ctrl.$animate&&ctrl.$animate.enabled(container[0])){ctrl.$animate.on('enter',container[0],function(elem,phase){if(phase==='close'){// Only focus input after the animation has finished$timeout(function(){ctrl.focusSearchInput(initSearchValue);});}});}else{$timeout(function(){ctrl.focusSearchInput(initSearchValue);});}
It seems that the code inside ctrl.$animate.on it's never run.