nav progress

This commit is contained in:
Adam Bradley
2015-05-12 22:55:16 -05:00
parent 54fca52ed1
commit aa4efdd12a
4 changed files with 38 additions and 44 deletions

View File

@@ -17,6 +17,6 @@ export class FirstPage {
}
push() {
this.nav.push(SecondPage);
this.nav.push(SecondPage, { animation: 'none' });
}
}

View File

@@ -20,6 +20,6 @@ export class SecondPage {
this.nav.pop();
}
push() {
this.nav.push(ThirdPage);
this.nav.push(ThirdPage, { animation: 'none' });
}
}