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

@ -8,12 +8,12 @@ import { ionicBootstrap, NavController } from '../../../../../src';
class SegmentPage {
signInType: string;
constructor(public nav: NavController) {
constructor(public navCtrl: NavController) {
this.signInType = 'new';
}
goToPage2() {
this.nav.push(SegmentPage2);
this.navCtrl.push(SegmentPage2);
}
}