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 @@ -1870,6 +1870,12 @@ But in practice this is not what people want and so this change iterates over pr
1870
1870
in the order they are returned by Object.keys(obj), which is almost always the order
1871
1871
in which the properties were defined.
1872
1872
1873
+ - **ngOptions:** due to [7fda214c](https://github.com/angular/angular.js/commit/7fda214c4f65a6a06b25cf5d5aff013a364e9cef),
1874
+
1875
+ setting the ngOptions attribute expression after the element is compiled, will no longer trigger the ngOptions behavior.
1876
+ This worked previously because the ngOptions logic was part of the select directive, while
1877
+ it is now implemented in the ngOptions directive itself.
1878
+
1873
1879
- **select:** due to [7fda214c](https://github.com/angular/angular.js/commit/7fda214c4f65a6a06b25cf5d5aff013a364e9cef),
1874
1880
1875
1881
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