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
had some performance improvements in comparison to the {{
syntax.
Is it supported?
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
had some performance improvements in comparison to the {{
syntax.
Is it supported?
Yes. This works:
<span ng-bind="::name"></span>