Files
WKVS/www/intern/js/img.js
2026-04-12 21:25:44 +02:00

11 lines
322 B
JavaScript

jQuery(document).ready(function($) {
const lightbox = new PhotoSwipeLightbox({
gallery: '.imgGallery',
children: 'a.imgLink',
pswpModule: PhotoSwipe,
captionContent: (slide) => {
return slide.data.element.dataset.pswpCaption || '';
}
});
lightbox.init();
});