Releases: arielfaur/ionic-sidetabs
Releases · arielfaur/ionic-sidetabs
v1.1.1
v1.1.0
Supports dynamically expanding/collapsing of tabs with new directive parameter
Usage:
<ion-side-tabs on-expand="tabExpand(index)" on-collapse="tabCollapse(index)">
<ion-side-tab class="dark-bg" style="border-radius: 10px;" expand="tab1.expand">
...
</ion-side-tab>
</ion-side-tabs>
In controller:
$scope.toggleTab1 = function() {
$scope.tab1.expand = !$scope.tab1.expand;
};
See included example project.