test(lifecycle): update lifecycle events

This commit is contained in:
Adam Bradley
2016-06-01 12:19:08 -05:00
parent c18335e946
commit 2eb88fa687
8 changed files with 144 additions and 144 deletions

View File

@ -14,7 +14,7 @@ class View1Cmp {
console.log(`View1Cmp, path: ${this.path}`);
}
onPageDidEnter() {
ionViewDidEnter() {
this.windowHash = window.location.hash;
}
}
@ -30,7 +30,7 @@ class View2Cmp {
console.log(`View2Cmp, path: ${this.path}`);
}
onPageDidEnter() {
ionViewDidEnter() {
this.windowHash = window.location.hash;
}
}
@ -48,7 +48,7 @@ class View3Cmp {
console.log(`View3Cmp, path: ${this.path}, param id: ${this.id}`);
}
onPageDidEnter() {
ionViewDidEnter() {
this.windowHash = window.location.hash;
}
}