Skip to content

Instantly share code, notes, and snippets.

@oskarnrk
Created March 3, 2015 15:38
Show Gist options
  • Save oskarnrk/434b2931a53f91dfb484 to your computer and use it in GitHub Desktop.
Save oskarnrk/434b2931a53f91dfb484 to your computer and use it in GitHub Desktop.
[Ionic] Disable the default tabs-striped behavior for Android
angular.module( ... )
.config(['$ionicTabsConfig', function($ionicTabsConfig) {
// Override the Android platform default to add "tabs-striped" class to "ion-tabs" elements.
$ionicTabsConfig.type = '';
}])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment