(speed: number)
| 359 | else controls.classList.remove("hfp-hidden"); |
| 360 | }, |
| 361 | updateSpeed(speed: number) { |
| 362 | const idx = presets.indexOf(speed); |
| 363 | if (idx !== -1) speedIndex = idx; |
| 364 | speedBtn.textContent = formatSpeed(speed); |
| 365 | setActiveOption(speed); |
| 366 | }, |
| 367 | updateMuted(muted: boolean) { |
| 368 | isMuted = muted; |
| 369 | muteBtn.innerHTML = getVolumeIcon(muted, currentVolume); |
nothing calls this directly
no test coverage detected