Skip to content

Commit

Permalink
test(nav): adds missing ionViewWillLoad counter
Browse files Browse the repository at this point in the history
  • Loading branch information
manucorporat committed Nov 1, 2016
1 parent 17dbf69 commit c76d15d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/components/nav/test/basic/app-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,11 @@ export class FirstPage {
};
}

ionViewWillLoad() {
console.log('ionViewWillLoad, FirstPage', this.viewCtrl.id);
this.called.ionViewWillLoad++;
}

ionViewDidLoad() {
console.log('ionViewDidLoad, FirstPage');
for (var i = 1; i <= 50; i++) {
Expand Down

0 comments on commit c76d15d

Please sign in to comment.