This repository was archived by the owner on Apr 12, 2024. It is now read-only.
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
one-time binding ng-options #10687
Closed
Description
According to docs, when using a directive that takes an expression, we are able set one-time binding as so:
`
- {{item.name}};
However, this doesn't seem to work with ng-options, tried (1.3.0 - 1.38)
ng-options="o as o for o in ::things"
If I place ::things in a binding it works.
ng-options="o as o for o in {{::things}}"