From b6266889a43cc5b71b4520f8b43d5cc73139b3f3 Mon Sep 17 00:00:00 2001 From: Andy Joslin Date: Mon, 28 Apr 2014 11:35:11 -0600 Subject: [PATCH] fix(ionNavButtons): fix side="left" flicker with back button on ios --- js/angular/directive/navButtons.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/js/angular/directive/navButtons.js b/js/angular/directive/navButtons.js index 40e195b206..b401c85113 100644 --- a/js/angular/directive/navButtons.js +++ b/js/angular/directive/navButtons.js @@ -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