12 lines
245 B
JavaScript
12 lines
245 B
JavaScript
document.addEventListener("DOMContentLoaded", function () {
|
|
if (typeof GLightbox === "undefined") return;
|
|
|
|
GLightbox({
|
|
selector: ".glightbox",
|
|
loop: true,
|
|
touchNavigation: true,
|
|
zoomable: true,
|
|
draggable: true,
|
|
});
|
|
});
|