Is there a way to prevent changes made to the upper tab in md-align-tabs attribute from affecting the inner tab when one tab is nested inside another using md-tabs?
If so, how can I achieve this?
<md-content layout="column" layout-fill>
<md-tabs layout="column" class="md-primary" md-selected="data.selectedIndex" md-align-tabs="{{checks[data.selectedIndex] ? 'bottom' : 'top'}}" layout-fill >
<md-tab id="Tab{{checkBottom}}" ng-repeat="checkBottom in checkDataBottom">
<md-tab-label>Tab{{checkBottom+1}}</md-tab-label>
<md-tab-body>
<div class="md-padding" layout="row" layout-sm="column" layout-align="left center">
<md-checkbox ng-value="true" ng-model="checks[checkBottom]" ng-change="change()" aria-label="Align tabs to bottom?" style="margin: 5px;">Tab to bottom</md-checkbox>
<md-content layout="column" layout-fill>
<md-tabs layout="column" class="md-primary" md-selected="data2.selectedIndex" md-align-tabs="{{checksX[data2.selectedIndex] ? 'bottom' : 'top'}}" layout-fill >
<md-tab id="Tab{{checksXy}}" ng-repeat="checksXy in checkDataBottom">
<md-tab-label>Tab{{checksXy+1}}</md-tab-label>
<md-tab-body>
<div class="md-padding" layout="row" layout-sm="column" layout-align="left center">
<md-checkbox ng-value="true" ng-model="checksX[checksXy]" ng-change="change()" aria-label="Align tabs to bottom?" style="margin: 5px;">Tab to bottom</md-checkbox>
</div>
</md-tab-body>
</md-tab>
</md-tabs>
</md-content>
</div>
</md-tab-body>
</md-tab>
</md-tabs>
</md-content>