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); } }