I'm a newbie in Angular JS(I'm using #1.5.8)and I'm following the docs.angularjs.org/tutorial tutorials.
I've the html
<div class="jumbotron">
<h1>{{application_name | uppercase }}</h1>
<p class="lead" >
</div>
where is set in main.js
$scope.application_name='app';
everything is going well, but every time I reload manually(refresh localhost page) or with gulp, the page renders earlier the html,the user sees application_name printed in big and after is rendered with the wanted value.
My question is :
is there a way to avoid showing Angular js expressions when rendering the page for first time?
I want that when I go to the localhost page, the page shows app and not
application_name