Abdalla Elabd

Results 3 comments of Abdalla Elabd

Changing this line https://github.com/angular-ui/ui-select/blob/master/dist/select.js#L839 from `var inputWidth = containerWidth - input.offsetLeft;` into `var inputWidth = containerWidth - angular.element(input).offset().left;` fixes it for me.

The issue occurs when I'm not giving the **ui-select-choices** directive a class of "_ui-select-choices_" and the **_ui-select-match_** directive a class of "ui-select-match". Adding those classes fixes the issue. Any other...