diff --git a/src/public/js/lazy.js b/src/public/js/lazy.js index 0dc1c3d..e31518e 100644 --- a/src/public/js/lazy.js +++ b/src/public/js/lazy.js @@ -9,7 +9,6 @@ window.addEventListener("DOMContentLoaded", () => { entries.forEach(entry => { if (entry.isIntersecting) { const img = entry.target; - console.log("Lazy-loading image:", img.dataset.src); img.src = img.dataset.src; img.onload = () => { img.classList.add("loaded"); diff --git a/src/webui/js/gallery-editor.js b/src/webui/js/gallery-editor.js index 926d5ab..d40a670 100644 --- a/src/webui/js/gallery-editor.js +++ b/src/webui/js/gallery-editor.js @@ -47,9 +47,9 @@ function renderGallery() { const div = document.createElement('div'); div.className = 'photo flex-item flex-column'; div.innerHTML = ` -