Our current application is using ionic-1.0.0.beta-8, we recently upgraded to 1.0.0.beta-10.
One of functionality seems to have broken.
In a modal I have a input field doing typeahead. In newer version typeahead works but we couldn’t select from the list (I mean ng-click event is not firing when I select).
Digging further with code difference, we noticed in beta-9 below change has been made which is causing the issue.
Sorry augbar, was on a vacation for a while. I am not still sure about adambradley’s ancestor label element fix. I modified ionic version as we had a quick deliverable.
Changes I did is in ionic 11 js file
climbEle = ele.parentElement;
to
climbEle = climbEle.parentElement;
For example if you are using angular UI bootstrap typeahead, we cannot select the element of results as its a floating div.
This changed i did should do.
I guess there should a condition clause for it which is missing.