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 was archived by the owner on Apr 12, 2024. It is now read-only.
Detailed Description:
The ngOptions directive causes a strange flickering behavior on Firefox when the digest loop is triggered. This issue does not occur for Safari or Chrome. I encountered this issue in version 1.2.14 but after researching, I believe it's been around since version 1.0.x.
Other Comments:
I was able to "fix" this issue by editing src/ng/directive/select.js line 534 as follows:
- if (lastElement[0].selected !== option.selected) {+ if (existingOption.selected !== option.selected) {
Unfortunately this breaks on of the select unit tests, should select correct input if previously selected option was "?".
I'll play with it some more but would welcome any input from the community.