Files
WKVS/www/intern/js/img.js
T
2026-07-24 21:49:40 +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();
});