Skip to content
Snippets Groups Projects
Verified Commit da820c15 authored by Volker Schukai's avatar Volker Schukai :alien:
Browse files

fix: remove log

parent 667be0fb
No related branches found
No related tags found
No related merge requests found
...@@ -2036,12 +2036,6 @@ function getVisibleHeightLimit(startEl) { ...@@ -2036,12 +2036,6 @@ function getVisibleHeightLimit(startEl) {
const style = gcs(el); const style = gcs(el);
const overflowY = style.overflowY; const overflowY = style.overflowY;
console.log("🔍", el.tagName || el.nodeName, {
overflowY,
clientHeight: el.clientHeight,
scrollHeight: el.scrollHeight,
});
const isScrollable = ["auto", "scroll", "hidden"].includes(overflowY); const isScrollable = ["auto", "scroll", "hidden"].includes(overflowY);
if (isScrollable && el.clientHeight > 0) { if (isScrollable && el.clientHeight > 0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment