This commit is contained in:
Peter Maquiran
2023-07-15 11:01:09 +01:00
parent a61ee6c07e
commit eba2b7f9ce
76 changed files with 525 additions and 218 deletions
@@ -197,11 +197,13 @@ export class DocumentDetailPage implements OnInit {
},
cssClass: classs,
});
await modal.present();
modal.onDidDismiss().then( async(res)=>{}, (error) => {
console.log(error)
});
await modal.present();
}
async openBookMeetingModal() {
@@ -221,12 +223,14 @@ export class DocumentDetailPage implements OnInit {
cssClass: classs,
backdropDismiss: false
});
await modal.present();
modal.onDidDismiss().then(res=>{
//this.RouteService.goBack();
}, (error) => {
console.log(error)
});
await modal.present();
}
async openOptions() {
@@ -239,7 +243,7 @@ export class DocumentDetailPage implements OnInit {
},
translucent: true
});
await popover.present()
popover.onDidDismiss().then((res:any) => {
if(res.data.component == 'openBookMeetingModal') {
@@ -250,6 +254,8 @@ export class DocumentDetailPage implements OnInit {
}, (error) => {
console.log(error)
});
await popover.present()
}
}