Skip to content

Commit

Permalink
fix(ionNavButtons): fix side="left" flicker with back button on ios
Browse files Browse the repository at this point in the history
  • Loading branch information
ajoslin committed Apr 28, 2014
1 parent 0af7f6d commit b626688
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion js/angular/directive/navButtons.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ IonicModule
$compile(buttons)($scope);

//Append buttons to navbar
$animate.enter(buttons, navElement);
ionic.requestAnimationFrame(function() {
$animate.enter(buttons, navElement);
});

//When our ion-nav-buttons container is destroyed,
//destroy everything in the navbar
Expand Down

0 comments on commit b626688

Please sign in to comment.