Fix: Disable scroll control on fullscreen video

pull/16/head 1.1.1
Juraj Nyíri 3 years ago
parent e56475aa1d
commit c90cfd1771

@ -20033,7 +20033,7 @@ class PlexMeetsHomeAssistant extends HTMLElement {
this.loadInitialData = async () => {
window.addEventListener('scroll', () => {
// todo: improve performance by calculating this when needed only
if (this.detailsShown && this.activeMovieElem) {
if (this.detailsShown && this.activeMovieElem && !isVideoFullScreen(this)) {
const seasonContainers = this.getElementsByClassName('seasonContainer');
const episodeContainers = this.getElementsByClassName('episodeContainer');
const seasonElems = this.getElementsByClassName('seasonElem');

@ -152,7 +152,7 @@ class PlexMeetsHomeAssistant extends HTMLElement {
loadInitialData = async (): Promise<void> => {
window.addEventListener('scroll', () => {
// todo: improve performance by calculating this when needed only
if (this.detailsShown && this.activeMovieElem) {
if (this.detailsShown && this.activeMovieElem && !isVideoFullScreen(this)) {
const seasonContainers = this.getElementsByClassName('seasonContainer') as HTMLCollectionOf<HTMLElement>;
const episodeContainers = this.getElementsByClassName('episodeContainer') as HTMLCollectionOf<HTMLElement>;
const seasonElems = this.getElementsByClassName('seasonElem') as HTMLCollectionOf<HTMLElement>;

Loading…
Cancel
Save