Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Select dropdown in modal using Angular 1.29 and latest Chrome 47

We are having an issue with a regular <select> dropdown located inside a modal used by an Angular component. This previously worked, but now with the upgrade to Chrome 47 does not anymore -- there are absolutely no errors generated on the javascript console, it is completely silent.

Moving the dropdown outside of the modal into a regular page works, so it is specifically related to being located inside a modal, and specifically something within an Angular component.

Angular 1.29 Chrome 47

Any help would be greatly appreciated.

like image 483
roya Avatar asked Dec 02 '15 14:12

roya


2 Answers

I had the same issue with Angular 1.26. I updated to 1.4.5 and it works correctly.

All I had to do to upgrade was add the following script tag to my index.html file.

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.5/angular.min.js"></script>
like image 155
user2708387 Avatar answered Sep 18 '22 23:09

user2708387


This issue was the bug described here: https://code.google.com/p/chromium/issues/detail?id=565132

like image 38
roya Avatar answered Sep 19 '22 23:09

roya