|
@@ -58,6 +58,9 @@ function isInViewport(element) {
|
|
const height = innerHeight || document.documentElement.clientHeight;
|
|
const height = innerHeight || document.documentElement.clientHeight;
|
|
const width = innerWidth || document.documentElement.clientWidth;
|
|
const width = innerWidth || document.documentElement.clientWidth;
|
|
return (
|
|
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.top >= 0 &&
|
|
rect.left >= 0 &&
|
|
rect.left >= 0 &&
|
|
rect.bottom <= height &&
|
|
rect.bottom <= height &&
|