Add closePopup function

This commit is contained in:
DESKTOP-FMM8UI0\CLV 2021-04-08 10:50:41 +02:00
parent eb66ab3fdd
commit 0f4034854c
1 changed files with 8 additions and 20 deletions

View File

@ -46,29 +46,17 @@ WA.onEnterZone(zoneSchoolName, () => {
}]);
})
WA.onLeaveZone(zoneSchoolName, () => {
if (currentPopup !== undefined) {
currentPopup.close();
currentPopup = undefined;
}
})
WA.onLeaveZone(zoneSchoolName, closePopUp)
WA.onLeaveZone(zoneTCMName, () => {
if (currentPopup !== undefined) {
currentPopup.close();
currentPopup = undefined;
}
})
WA.onLeaveZone(zoneTCMName, closePopUp)
WA.onLeaveZone(zoneEventName, () => {
WA.onLeaveZone(zoneEventName, closePopUp)
WA.onLeaveZone(zoneOfficeName, closePopUp)
function closePopUp(){
if (currentPopup !== undefined) {
currentPopup.close();
currentPopup = undefined;
}
})
WA.onLeaveZone(zoneOfficeName, () => {
if (currentPopup !== undefined) {
currentPopup.close();
currentPopup = undefined;
}
})
}