docs(demos): close popup, actionSheet, modal when page leaves

Closes #311
This commit is contained in:
Drew Rygh
2015-10-21 16:51:11 -05:00
parent 7f2ac37657
commit 7b13051a52
3 changed files with 27 additions and 4 deletions

View File

@ -50,7 +50,14 @@ class ModalsContentPage {
template: '<ion-nav [root]="rootView"></ion-nav>'
})
export class ModalsPage {
constructor() {
constructor(modal: Modal) {
this.rootView = ModalsFirstPage;
this.modal = modal;
}
onPageWillLeave() {
let modal = this.modal.get();
if (modal) {
modal.close();
}
}
}