()
| 80 | } |
| 81 | |
| 82 | const removeHighlight = () => { |
| 83 | const currentList = document.querySelectorAll(".codebox-current") |
| 84 | currentList.forEach((el) => el.classList.remove("codebox-current")) |
| 85 | } |
| 86 | |
| 87 | const updateTooltipPosition = (element: HTMLElement) => { |
| 88 | const rect = element.getBoundingClientRect() |
no outgoing calls
no test coverage detected