@hook Module.Controller
()
| 225 | |
| 226 | /** @hook Module.Controller */ |
| 227 | controllerClose() { |
| 228 | if (this.#hoverCurrentPre) { |
| 229 | dom.utils.removeClass(this.#hoverCurrentPre, 'se-pre-code-focus'); |
| 230 | this.#hoverCurrentPre = null; |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | #onHoverSelect(langValue) { |
| 235 | if (!this.#hoverCurrentPre) return; |
nothing calls this directly
no outgoing calls
no test coverage detected