Files
CustomLibs/JS/JustifedGallery/assets/js/index.js
2025-11-10 16:31:08 +01:00

11 lines
231 B
JavaScript

import JustifiedGallery from "./lib/gallery.js";
document.addEventListener("DOMContentLoaded", () => {
let element = document.getElementById("gallery")
new JustifiedGallery(element, {
wrapLinks: true,
});
})