Auto close modal for table

This commit is contained in:
2021-02-24 20:23:15 +01:00
parent 5337173b43
commit 388aa6d2d4
7 changed files with 54 additions and 18 deletions
@@ -48,6 +48,13 @@ export class EditEventPage implements OnInit {
ngOnInit() {
console.log(this.profile);
console.log(this.postEvent);
window.onresize = (event) => {
// if not mobile remove all component
if( window.innerWidth >= 1024){
this.modalController.dismiss();
}
};
}
close(){