test(): update to public navCtrl convention

This commit is contained in:
Adam Bradley
2016-08-04 13:50:15 -05:00
parent 478ac45211
commit 3c493652b2
36 changed files with 154 additions and 145 deletions

View File

@ -11,7 +11,7 @@ class IntroPage {
mySlideOptions: any;
showSlide: boolean = true;
constructor(private nav: NavController) {
constructor(public navCtrl: NavController) {
this.mySlideOptions = {
paginationClickable: true,
lazyLoading: true,
@ -38,7 +38,7 @@ class IntroPage {
}
skip() {
this.nav.push(MainPage);
this.navCtrl.push(MainPage);
}
}