This commit is contained in:
Timothy J. Baek
2024-09-18 00:18:47 +02:00
parent 5065291f72
commit 984e0c533e
3 changed files with 14 additions and 8 deletions

View File

@@ -44,19 +44,22 @@
window.addEventListener('keydown', handleKeyDown);
document.body.style.overflow = 'hidden';
} else if (modalElement) {
window.removeEventListener('keydown', handleKeyDown);
document.body.removeChild(modalElement);
document.body.style.overflow = 'unset';
}
$: if (!show) {
dispatch('close');
window.removeEventListener('keydown', handleKeyDown);
if (document.body.contains(modalElement)) {
document.body.removeChild(modalElement);
document.body.style.overflow = 'unset';
}
}
onDestroy(() => {
show = false;
if (modalElement) {
document.body.removeChild(modalElement);
if (document.body.contains(modalElement)) {
document.body.removeChild(modalElement);
document.body.style.overflow = 'unset';
}
}
});
</script>