This repository was archived by the owner on Apr 12, 2024. It is now read-only.
  
  
  
  
  
Description
According to docs, when using a directive that takes an expression, we are able set one-time binding as so:
`
`
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}}"