android seems to report width of video fractionally higher than width of screen, round down value to fix #38

This commit is contained in:
Sanjay B 2021-10-29 15:03:15 +05:30
parent e0f0e3897a
commit 86a1f8ac25

View file

@ -79,7 +79,7 @@ function isElementInViewport (el) {
rect.top >= 0 && rect.top >= 0 &&
rect.left >= 0 && rect.left >= 0 &&
rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) && /* or $(window).height() */ rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) && /* or $(window).height() */
rect.right <= (window.innerWidth || document.documentElement.clientWidth) /* or $(window).width() */ Math.floor(rect.right) <= (window.innerWidth || document.documentElement.clientWidth) /* or $(window).width() */
); );
} }