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.
Object properties beginning with a '$' character are not displayed in templates using the ng-repeat directive. A small example exhibiting the problem:
<p data-ng-repeat="(key, value) in {'$no': 'rock', 'yes': 'hard place'}">
{{ key }}: {{ value }}
</p>
Oddly, you can display these properties explicitly:
{{ my_object.$no }}
As far as I know, these are valid JS property names, so I'm not sure why these would not be allowed, especially considering the inconsistent behaviour of explicitly referencing these properties.