This repository was archived by the owner on Oct 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Click on selector icon does not open droppown #1862
Labels
Comments
Hi @DioNNiS , tested this in chrome look like it is working. Maybe i'm using the wrong browser? |
related to #1797 |
Hi guys, // Toggle dropdown
ctrl.toggle = function(e) {
if (ctrl.open) {
ctrl.close();
e.preventDefault();
e.stopPropagation();
} else {
ctrl.activate();
}
}; I just changed it to: // Toggle dropdown
ctrl.toggle = function(e) {
if (ctrl.open) {
ctrl.close();
} else {
ctrl.activate();
}
e.preventDefault();
e.stopPropagation();
}; And all works well. Thanks. |
Maybe one of you guys can have a look and make a PR for it? Maybe @dsisoev ? |
Looks like the pr #2011 has fixed the problem. Could you verify? |
yes, the pr #2011 fix the problem for me. thanks |
Closing down @amarmechai checked if this issue is fixed. If needed it can be reopend. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Bug description:
Issue appears on the lastest version of the component ("ui-select": "0.19.6").
Issue reproduced only if bootstrap theme is used and search edit box is disabled.
Link to minimally-working plunker that reproduces the issue:
Try official example: http://angular-ui.github.io/ui-select/demo-disable-search.html
The text was updated successfully, but these errors were encountered: