()
| 1018 | } |
| 1019 | |
| 1020 | function closeEmbeddedTool() { |
| 1021 | if (!toolOverlay) return; |
| 1022 | toolOverlay.classList.remove("open"); |
| 1023 | toolOverlay.setAttribute("aria-hidden", "true"); |
| 1024 | document.documentElement.classList.remove("tool-open"); |
| 1025 | setToolOverlayAction(null); |
| 1026 | setActiveToolSwitchUI(null); |
| 1027 | } |
| 1028 | |
| 1029 | // Intercept tool links and open inside the app overlay |
| 1030 | document.querySelectorAll("[data-open-tool]").forEach((el) => { |
no test coverage detected