fix for slack scroll
This commit is contained in:
parent
3796b7de0d
commit
526009ba52
1 changed files with 3 additions and 1 deletions
|
@ -83,7 +83,9 @@ const viewportRect = (e) => {
|
||||||
|
|
||||||
const isVisible = (element) => {
|
const isVisible = (element) => {
|
||||||
let rect = element.getBoundingClientRect();
|
let rect = element.getBoundingClientRect();
|
||||||
if (rect.width === 0 || rect.height === 0) {
|
let style = window.getComputedStyle(element);
|
||||||
|
|
||||||
|
if (style.overflow !== 'visible' && (rect.width === 0 || rect.height === 0)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (rect.right < 0 && rect.bottom < 0) {
|
if (rect.right < 0 && rect.bottom < 0) {
|
||||||
|
|
Reference in a new issue