fix(web): fix escape key not closing video player after seeking (#16860)

Co-authored-by: Yaros <thedj.launchpadder.dmx512@gmail.com>
This commit is contained in:
Snowknight26 2025-03-25 08:42:23 -05:00 committed by GitHub
parent 91065db3ff
commit b8bc11b0d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -124,6 +124,9 @@
}}
onseeking={() => (isScrubbing = true)}
onseeked={() => (isScrubbing = false)}
onplaying={(e) => {
e.currentTarget.focus();
}}
onclose={() => onClose()}
muted={forceMuted || $videoViewerMuted}
bind:volume={$videoViewerVolume}