From 1d1f94cab6341f09e97636e5aeca5adc4cae8328 Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Fri, 27 Nov 2015 23:22:45 -0600 Subject: [PATCH] test(tabs): async nav to tabs --- ionic/components/tabs/test/advanced/index.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ionic/components/tabs/test/advanced/index.ts b/ionic/components/tabs/test/advanced/index.ts index 4713146d1e..96e62e236f 100644 --- a/ionic/components/tabs/test/advanced/index.ts +++ b/ionic/components/tabs/test/advanced/index.ts @@ -32,8 +32,9 @@ class SignIn { } push() { - this.nav.push(TabsPage); - //this.keyboard.close(); + setTimeout(() => { + this.nav.setRoot(TabsPage, null, { animate: true }); + }, 1000); } }