0
0
mirror of https://github.com/Maks1mS/free-ozon-dpr.git synced 2024-12-24 02:52:58 +03:00

fix: hide map while popup is opened

This commit is contained in:
Maxim Slipenko 2024-06-09 08:14:56 +03:00
parent be1acbbbf8
commit baa73c0c2e
2 changed files with 20 additions and 14 deletions

View File

@ -1,15 +1,18 @@
import Cookies from "js-cookie"; import Cookies from "js-cookie";
import { el } from "./utils.js";
const HIDE_INFO_POPUP = "hideInfoPopup"; const HIDE_INFO_POPUP = "hideInfoPopup";
document.addEventListener("DOMContentLoaded", function () { document.addEventListener("DOMContentLoaded", function () {
const infoPopup = document.querySelector(".info-popup"); const infoPopup = document.querySelector(".info-popup");
const noShowCheckbox = document.querySelector('input[name="no-show"]'); const noShowCheckbox = document.querySelector('input[name="no-show"]');
const confirmButton = document.querySelector('.info-popup footer button'); const confirmButton = document.querySelector(".info-popup footer button");
const map = el("map");
const hidePopupCookie = Cookies.get(HIDE_INFO_POPUP); const hidePopupCookie = Cookies.get(HIDE_INFO_POPUP);
if (!hidePopupCookie) { if (!hidePopupCookie) {
infoPopup.style.display = "block"; infoPopup.style.display = "block";
map.style.display = "none";
} }
confirmButton.addEventListener("click", function () { confirmButton.addEventListener("click", function () {
@ -18,5 +21,6 @@ document.addEventListener("DOMContentLoaded", function () {
} }
infoPopup.style.display = "none"; infoPopup.style.display = "none";
map.style.display = "block";
}); });
}); });

View File

@ -76,3 +76,5 @@ body {
color: var(--ol-brand-color); color: var(--ol-brand-color);
text-decoration: underline; text-decoration: underline;
} }
.info-popup-content > p { text-align:justify; }