I am making an application with angular js. I am binding content in the page using {{ data.content }} method, this works fine, but while loading the web page browser shows the same code in the page.
see the screenshot I've taken while page loading
is there any way to clear this without using ng-bind method ?
EDIT
I have tried this method
1 -added ng-clock for body
<body ng-app="MyApp" ng-cloack ng-controller="MyController" >
2 -added css style for ng-clock
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
display: none !important;
}
but still the same problem persists.
and I'm using latest version of both chorme and mozilla firefox