mirror of
https://github.com/Maks1mS/free-ozon-dpr.git
synced 2025-01-15 11:51:04 +03:00
23 lines
720 B
JavaScript
23 lines
720 B
JavaScript
|
import Cookies from "js-cookie";
|
||
|
|
||
|
const HIDE_INFO_POPUP = "hideInfoPopup";
|
||
|
|
||
|
document.addEventListener("DOMContentLoaded", function () {
|
||
|
const infoPopup = document.querySelector(".info-popup");
|
||
|
const noShowCheckbox = document.querySelector('input[name="no-show"]');
|
||
|
const confirmButton = document.querySelector('.info-popup footer button');
|
||
|
|
||
|
const hidePopupCookie = Cookies.get(HIDE_INFO_POPUP);
|
||
|
if (!hidePopupCookie) {
|
||
|
infoPopup.style.display = "block";
|
||
|
}
|
||
|
|
||
|
confirmButton.addEventListener("click", function () {
|
||
|
if (noShowCheckbox.checked) {
|
||
|
Cookies.set(HIDE_INFO_POPUP, "true", { expires: 400 });
|
||
|
}
|
||
|
|
||
|
infoPopup.style.display = "none";
|
||
|
});
|
||
|
});
|