Selaa lähdekoodia

Merge pull request #754 from thiagocferr/741-Dislike-Numbers-in-Shorts-disappears-when

HOTFIX: added aditional check for like/dislike buttons inside ACTIVE …
Dmitrii Selivanov 2 vuotta sitten
vanhempi
sitoutus
8f88f9203f

+ 3 - 0
Extensions/UserScript/Return Youtube Dislike.user.js

@@ -58,6 +58,9 @@ function isInViewport(element) {
   const height = innerHeight || document.documentElement.clientHeight;
   const width = innerWidth || document.documentElement.clientWidth;
   return (
+    // When short (channel) is ignored, the element (like/dislike AND short itself) is
+    // hidden with a 0 DOMRect. In this case, consider it outside of Viewport
+    !(rect.top == 0 && rect.left == 0 && rect.bottom == 0 && rect.right == 0) &&
     rect.top >= 0 &&
     rect.left >= 0 &&
     rect.bottom <= height &&

+ 3 - 0
Extensions/combined/src/utils.js

@@ -87,6 +87,9 @@ function isInViewport(element) {
   const height = innerHeight || document.documentElement.clientHeight;
   const width = innerWidth || document.documentElement.clientWidth;
   return (
+    // When short (channel) is ignored, the element (like/dislike AND short itself) is
+    // hidden with a 0 DOMRect. In this case, consider it outside of Viewport
+    !(rect.top == 0 && rect.left == 0 && rect.bottom == 0 && rect.right == 0) &&
     rect.top >= 0 &&
     rect.left >= 0 &&
     rect.bottom <= height &&