j
Size: a a a
j
DS
$document
.keyup(function (e) {
// close modal when pressing esc
if (e.keyCode === 27 && $(".modal-wrapper").hasClass("show"))
hideModal(currentURL);
})
// when clicking anywhere on page
.on("click", function (e) {
const currentTargetIsLink =
event.target instanceof HTMLAnchorElement ||
event.path[1].className === "modal-link";
if (popupOpen() && !currentTargetIsLink) hideModal(currentURL);
})
// Close modal when clicking on close button
.on("click", ".close-modal", function () {
hideModal(currentURL);
})
// when clicking inside of modal don't close
.on("click", ".modal, .modal-content", function (e) {
e.stopPropagation();
});
DS
ПР
K
$document
.keyup(function (e) {
// close modal when pressing esc
if (e.keyCode === 27 && $(".modal-wrapper").hasClass("show"))
hideModal(currentURL);
})
// when clicking anywhere on page
.on("click", function (e) {
const currentTargetIsLink =
event.target instanceof HTMLAnchorElement ||
event.path[1].className === "modal-link";
if (popupOpen() && !currentTargetIsLink) hideModal(currentURL);
})
// Close modal when clicking on close button
.on("click", ".close-modal", function () {
hideModal(currentURL);
})
// when clicking inside of modal don't close
.on("click", ".modal, .modal-content", function (e) {
e.stopPropagation();
});
DD
K
K
ПР
DS
DD
K
DD
DS
S