I have a simple app structure consisting of headers, footers, and ng-view on the homepage. When I enter the page, I notice that the two ng-include files load first, followed by the ng-view which pushes the footer to the bottom. This causes a brief flashing of the footer in a different color for about 0.1 seconds.
<div ng-include='"app/core/templates/header.html"'></div>
<div ng-view autoscroll="true"></div>
<div ng-include='"app/core/templates/footer.html"'></div>
Is there a way to make all elements finish loading at the same time and display together? Or is there a way to improve the smoothness of this loading process?