1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Partial fix for music

Same problems as video when on nowplaying.html, all other pages are still behaving as before (when the playback bar is along the bottom).
This commit is contained in:
Sparky 2019-02-02 12:26:08 -05:00
parent 97ee1d10c6
commit 8a868f9109
2 changed files with 3 additions and 3 deletions

View file

@ -605,7 +605,7 @@ define(["browser", "datetime", "backdrop", "libraryBrowser", "listView", "imageL
return datetime.getDisplayRunningTime(ticks);
};
context.querySelector(".nowPlayingVolumeSlider").addEventListener("change", function () {
context.querySelector(".nowPlayingVolumeSlider").addEventListener("mousemove", function () {
playbackManager.setVolume(this.value, currentPlayer);
});
context.querySelector(".buttonMute").addEventListener("click", function () {