()
| 589 | } |
| 590 | } |
| 591 | function closePopupWindow() { |
| 592 | if (state.popupWindow && !state.popupWindow.closed) { |
| 593 | state.popupWindow.close() |
| 594 | state.popupWindow = null |
| 595 | removeAcrylicOverlay() |
| 596 | if (state.linkToPreload) { |
| 597 | removePreloadedLink(state.linkToPreload) |
| 598 | } |
| 599 | window.removeEventListener('scroll', closePopupOnScroll) |
| 600 | } |
| 601 | } |
| 602 | function removePreloadedLink(link) { |
| 603 | const preloadElement = document.querySelector(`link[href="${link}"]`) |
| 604 | if (preloadElement) { |
no test coverage detected