Merge pull request #239 from zoff-music/fix/volume-slider-resize-hide

Fixed issue with volumeslider being hidden on window-resize
This commit is contained in:
Kasper Rynning-Tønnesen
2017-11-21 15:12:01 +01:00
committed by GitHub

View File

@@ -1698,6 +1698,7 @@ function window_width_volume_slider() {
} else if(window.innerWidth > 600 && slider_type == "vertical") {
slider_type = "horizontal";
Playercontrols.initSlider();
$(".volume-container").removeClass("hide");
}
}