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 has been archived by the owner on Oct 2, 2019. It is now read-only.
After i select item (with mouse click) from drop down list, focus still stay on select2, because ng-click callback function now doesn't pass skipFocusser argument in $select.select:
By the way, there is the same behavior when i close drop drown list without selecting any item (click anywhere out of select)- control is continuing to be focused
feat(skipFocuser): add skip focusser option
Add a skipFocusser option to configure skipping the focusser after selecting an item.
Closes#869#401#818#603#432
After i select item (with mouse click) from drop down list, focus still stay on select2, because ng-click callback function now doesn't pass skipFocusser argument in $select.select:
attr('ng-click', '$select.select(' + $select.parserResult.itemName + ')')
In this case, i have to use it like this:
.attr('ng-click', '$select.select(' + $select.parserResult.itemName + ', true)');
The text was updated successfully, but these errors were encountered: