From b983b6e4ecdcfcb1005d1795f6a76c5162269504 Mon Sep 17 00:00:00 2001 From: Tamius Han Date: Sat, 21 Sep 2019 21:49:31 +0200 Subject: [PATCH] Mutation observer doesn't always detect changes correctly, so we still need to periodically check for changes in player/video sizes. --- src/ext/lib/video-data/VideoData.js | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/src/ext/lib/video-data/VideoData.js b/src/ext/lib/video-data/VideoData.js index fbc18b2..48bd69b 100644 --- a/src/ext/lib/video-data/VideoData.js +++ b/src/ext/lib/video-data/VideoData.js @@ -36,8 +36,6 @@ class VideoData { return; } - - this.resizer = new Resizer(this); this.arDetector = new ArDetector(this); // this starts Ar detection. needs optional parameter that prevets ardetdctor from starting // player dimensions need to be in: @@ -51,8 +49,23 @@ class VideoData { this.pageInfo.initMouseActionHandler(this); this.video.classList.add(this.userCssClassName); // this also needs to be applied BEFORE we initialize resizer! + + // start fallback video/player size detection + this.fallbackChangeDetection(); } + async fallbackChangeDetection() { + while (!this.destroyed && !this.invalid) { + await this.sleep(1000); + this.validateVideoOffsets(); + } + } + + async sleep(timeout) { + return new Promise( (resolve, reject) => setTimeout(() => resolve(), timeout)); + } + + onVideoDimensionsChanged(mutationList, observer, context) { if (!mutationList || context.video === undefined) { // something's wrong if (observer && context.video) {