Skip to content

Commit b626688

Browse files
committed
fix(ionNavButtons): fix side="left" flicker with back button on ios
1 parent 0af7f6d commit b626688

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: js/angular/directive/navButtons.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ IonicModule
5757
$compile(buttons)($scope);
5858

5959
//Append buttons to navbar
60-
$animate.enter(buttons, navElement);
60+
ionic.requestAnimationFrame(function() {
61+
$animate.enter(buttons, navElement);
62+
});
6163

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

0 commit comments

Comments
 (0)