Fix playback of tv show or playlist and restoring of scrollbar after history back

This commit is contained in:
Dmitry Lyzo 2020-10-31 12:58:34 +03:00
parent 5787069b31
commit 47f6d198b6

View File

@ -103,9 +103,7 @@ function tryRemoveElement(elem) {
});
}
function hidePrePlaybackPage() {
const animatedPage = document.querySelector('.page:not(.hide)');
animatedPage.classList.add('hide');
function hideScroll() {
// At this point, we must hide the scrollbar placeholder, so it's not being displayed while the item is being loaded
document.body.classList.add('hide-scroll');
}
@ -1329,7 +1327,7 @@ function tryRemoveElement(elem) {
this.#mediaElement = videoElement;
if (options.fullscreen) {
hidePrePlaybackPage();
hideScroll();
}
// don't animate on smart tv's, too slow
@ -1344,7 +1342,7 @@ function tryRemoveElement(elem) {
} else {
// we need to hide scrollbar when starting playback from page with animated background
if (options.fullscreen) {
hidePrePlaybackPage();
hideScroll();
}
return Promise.resolve(dlg.querySelector('video'));