feat: small state and naming fixes (#719)

This commit is contained in:
Wesley Luyten
2026-03-04 16:05:20 -06:00
committed by GitHub
parent 070d094444
commit 5c422452e4
25 changed files with 94 additions and 88 deletions
@@ -33,7 +33,7 @@ class PlayerActions extends MediaElement {
bind(playBtn, () => this.#player.value?.play());
bind(pauseBtn, () => this.#player.value?.pause());
bind(volumeBtn, () => this.#player.value?.changeVolume(0.5));
bind(volumeBtn, () => this.#player.value?.setVolume(0.5));
}
override disconnectedCallback(): void {