()
| 700 | } |
| 701 | |
| 702 | function closeGraphView() { |
| 703 | const overlay = document.getElementById("graph-overlay"); |
| 704 | overlay.classList.remove("visible"); |
| 705 | if (graphSimulation) { graphSimulation.stop(); graphSimulation = null; } |
| 706 | document.getElementById("graph-svg").innerHTML = ""; |
| 707 | document.removeEventListener("keydown", onGraphEscape); |
| 708 | } |
| 709 | |
| 710 | function onGraphEscape(e) { |
| 711 | if (e.key === "Escape") closeGraphView(); |
no outgoing calls
no test coverage detected