How to correctly use ng-View with md-tabs in AngularJS and Angular Material -
i trying use angular material md-tabs in web site each tabs represents different url determined using ng-view tag. web site here: here . visually works i'm noticing pages loaded 5 times every time change tab .... once each tab location. is there setting or need change correctly? the code tabs follow: <div class="tabsdemodynamicheight"> <md-content class="md-padding"> <md-tabs md-dynamic-height md-border-bottom md-selected="selectedindex"> <md-tab label="featured"> <md-content class="md-padding"> <div ng-view></div> </md-content> </md-tab> <md-tab label="art sale"> <md-content class="md-padding"> <div ng-view></div> </md-cont...