I have my HTML like this
<form ng-controller="testCtrl1">
<div ng-include="'test/views/navigationbar.html'"></div>
<div ng-include="'test/views/processnav.html'"></div>
<div ng-include="'test/views/leftprocesstabs.html'"></div>
</div>
</form>
I want to write generalized method to check all my ng-include file are loaded.
After loading all file i need to make a server call.
Is there any way to check this in angular js?