1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
This commit is contained in:
Frost_I7 2025-03-30 11:01:14 -04:00 committed by GitHub
commit 5ffef17aa4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1442,6 +1442,12 @@ export default function (view) {
if (e.deltaY > 0) {
playbackManager.volumeDown(currentPlayer);
}
if (e.deltaX < 0) {
playbackManager.rewind(currentPlayer);
}
if (e.deltaX > 0) {
playbackManager.fastForward(currentPlayer);
}
}
function onWindowMouseDown(e) {