Learn from peers
Discuss and share learning resources with the top professionals across the world
Open business or job opportunities
Earn reputation points to get consulting projects, attract talent or land jobs.
Accelerate your growth
Grow your network and get exclusive deals from our learning partners.
signup now
I think that you are looking for the
ngCloak
directive: http://docs.angularjs.org/api/ng.directive:ngCloakFrom the documentation:
Use ng-bind instead of the interpolation. Given below is the example to use:
<div>
{{message}}
</div>
should be converted to
<div ng-bind="message"></div>