below is the structure of my app. very simple. header and footer are very small files. while the ng-view on homepage is much bigger. I noticed that when i enter the page. the two ng-include get loaded first, then the ng-view come up and footer get pushed to the bottom. the footer flashes for like 0.1 sec, but it's in a different color. so it is quite clear to me.
<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 anyway to have them finish loading at the same time. and display all together? or anyway to make it more smooth?