1
Fork 0

make it click two times

This commit is contained in:
Ashley //// 2024-01-23 18:44:45 +00:00
parent 2e2c43ebf3
commit a848fbfc19

View file

@ -1481,17 +1481,28 @@ document.getElementById('search').addEventListener('keyup', function () {
}
});
});
var isPopupOpen = false;
document.getElementById('popup-trigger').addEventListener('click', function (event) {
event.preventDefault();
function togglePopup() {
if (isPopupOpen) {
closePopup();
} else {
document.getElementById('popup-container').style.display = 'block';
document.body.style.overflow = 'hidden';
});
}
isPopupOpen = !isPopupOpen;
}
function closePopup() {
document.getElementById('popup-container').style.display = 'none';
document.body.style.overflow = 'auto';
isPopupOpen = false;
}
document.getElementById('popup-trigger').addEventListener('click', function (event) {
event.preventDefault();
togglePopup();
});
// @license-end
</script>