mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
disable chunked encoding for images
This commit is contained in:
parent
433cee5164
commit
b23a0a14c1
14 changed files with 196 additions and 130 deletions
|
@ -1185,11 +1185,6 @@
|
|||
$("#pause", videoElement).hide().removeClass("fadeOut");
|
||||
}, 300);
|
||||
|
||||
// Pause stop timer
|
||||
self.pauseStop = setTimeout(function () {
|
||||
self.stop();
|
||||
}, 5 * 60 * 1000); // 5 minutes
|
||||
|
||||
}).on("playing.mediaplayerevent", function (e) {
|
||||
|
||||
$('#video-playButton', videoControls).hide();
|
||||
|
@ -1199,9 +1194,6 @@
|
|||
$("#play", videoElement).hide().removeClass("fadeOut");
|
||||
}, 300);
|
||||
|
||||
// Remove pause setop timer
|
||||
self.clearPauseStop();
|
||||
|
||||
}).on("timeupdate.mediaplayerevent", function () {
|
||||
|
||||
if (!isPositionSliderActive) {
|
||||
|
@ -1248,7 +1240,7 @@
|
|||
|
||||
unbindEventsForPlayback();
|
||||
|
||||
}).on('ended.playnext', self.playNextAfterEnded);
|
||||
}).one('ended.playnext', self.playNextAfterEnded);
|
||||
|
||||
bindEventsForPlayback();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue