Reputation: 12557
In Angular.js 1.3 I can do a one time binding with:
{{::name}}
But how may I use this in ng-bind?
ng-bind
ng-bind had some performance improvements in comparison to the {{ syntax.
{{
Is it supported?
Upvotes: 48
Views: 10604
Reputation: 6256
Yes. This works:
<span ng-bind="::name"></span>
Upvotes: 88