peter-tanner.github.io/_javascript/modules/components/img-popup.js

16 lines
279 B
JavaScript
Raw Permalink Normal View History

2024-10-13 04:56:18 +08:00
/**
* Set up image popup
*
* Dependencies: https://github.com/biati-digital/glightbox
*/
const IMG_CLASS = 'popup';
export function imgPopup() {
if (document.getElementsByClassName(IMG_CLASS).length === 0) {
return;
}
GLightbox({ selector: `.${IMG_CLASS}` });
}