
test
test
Vložte svůj text...
function openLightbox(id) {
currentImgId = id;
// plná verze místo thumbnailu – používá se parametr id
const imgUrl = `https://drive.google.com/uc?export=view&id=${id}`;
document.getElementById('lb-img').src = imgUrl;
document.getElementById('lightbox').style.display = 'block';
if (window.innerWidth > 768) {
recenterLightbox();
}
}
