()
| 661 | |
| 662 | // ── Selection + detail panel ────────────────────────────────────── |
| 663 | function clearSelection() { |
| 664 | selection = null; |
| 665 | document.querySelectorAll('#memory-svg .is-selected').forEach(function (el) { el.classList.remove('is-selected'); }); |
| 666 | } |
| 667 | |
| 668 | function select(kind, id, el) { |
| 669 | clearSelection(); |
no test coverage detected