This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree 2 files changed +10
-0
lines changed
2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -2022,6 +2022,12 @@ But in practice this is not what people want and so this change iterates over pr
2022
2022
in the order they are returned by Object.keys(obj), which is almost always the order
2023
2023
in which the properties were defined.
2024
2024
2025
+ - **ngOptions:** due to [7fda214c](https://github.com/angular/angular.js/commit/7fda214c4f65a6a06b25cf5d5aff013a364e9cef),
2026
+
2027
+ setting the ngOptions attribute expression after the element is compiled, will no longer trigger the ngOptions behavior.
2028
+ This worked previously because the ngOptions logic was part of the select directive, while
2029
+ it is now implemented in the ngOptions directive itself.
2030
+
2025
2031
- **select:** due to [7fda214c](https://github.com/angular/angular.js/commit/7fda214c4f65a6a06b25cf5d5aff013a364e9cef),
2026
2032
2027
2033
the `select` directive will now use strict comparison of the `ngModel` scope value against `option`
Original file line number Diff line number Diff line change @@ -189,6 +189,10 @@ But in practice this is not what people want and so this change iterates over pr
189
189
in the order they are returned by Object.keys(obj), which is almost always the order
190
190
in which the properties were defined.
191
191
192
+ Also due to [7fda214c](https://github.com/angular/angular.js/commit/7fda214c4f65a6a06b25cf5d5aff013a364e9cef),
193
+ setting the ngOptions attribute expression after the element is compiled, will no longer trigger the ngOptions behavior.
194
+ This worked previously because the ngOptions logic was part of the select directive, while
195
+ it is now implemented in the ngOptions directive itself.
192
196
193
197
### select
194
198
You can’t perform that action at this time.
0 commit comments