Remove NavButton animation on intro

Is there any way to remove the animation for the nav buttons in header? Since beta14 there is a flickering, when it comes to change the button texts, when the slide is changing. So there must be a option to disable this fade-in, fade-out animation?

<ion-nav-buttons side="left" nav-transition="none">
    <button nav-transition="none" class="button button-white button-clear no-animation" ng-click="startApp()" ng-if="!slideIndex">Intro überspringen</button>
    <button nav-transition="none" class="button button-white button-clear no-animation" ng-click="previous()" ng-if="slideIndex > 0">Zurück</button>
  </ion-nav-buttons>

  <ion-nav-buttons side="right" nav-transition="none">
    <button nav-transition="none" class="button button-white button-clear no-animation" ng-click="next()" ng-if="slideIndex != 3">Weiter</button>
    <button nav-transition="none" class="button button-white button-clear no-animation" ng-click="startApp()" ng-if="slideIndex == 3"><strong>Starte Fill Up</strong></button>
  </ion-nav-buttons>

You could do this.

.buttons.ng-leave{
  display:none;
}

http://codepen.io/mhartington/pen/pvbegL

This is part of how ngAnimate works.
1 Like