Skip to content

Releases: arielfaur/ionic-sidetabs

v1.1.1

14 Mar 20:54

Choose a tag to compare

Minor fix to correctly display icon when tabs are collapsed/expanded programmatically

v1.1.0

08 Mar 14:18

Choose a tag to compare

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.

v1.0.2

25 Sep 17:57

Choose a tag to compare

  • fixed bug where rotating device and sending app to background caused tabs to be wrongly positioned

v1.0.1

28 Aug 17:36

Choose a tag to compare

fixed DI issue

v1.0.0

22 Aug 21:04

Choose a tag to compare

Initial release