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

fix: Remove unnecessary console log from IntersectionObserver

parent b1fc54f8
No related branches found
No related tags found
No related merge requests found
......@@ -1358,7 +1358,7 @@ function lookupSelection() {
const observer = new IntersectionObserver((entries, obs) => {
for (const entry of entries) {
if (entry.isIntersecting) {
console.log("IntersectionObserver: entry.target is visible");
obs.disconnect(); // Only observe once
setTimeout(() => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment