I'd like to hide the angular app until the view is rendered.
I propable have to hide it using style="display:none":
<div id="app-content" style="display:none">
<!-- Angular app HTML code -->
</div>
I have tried this, it won't work, because Angular does not modify the style.display value.
<div id="app-content" style="display:none" ng-show="1">
How does Angular hide elements, where should I modify the style.display, or is there a better solution?