mirror of
https://github.com/peter-tanner/peter-tanner.github.io.git
synced 2024-11-30 20:10:18 +08:00
16 lines
279 B
JavaScript
16 lines
279 B
JavaScript
/**
|
|
* 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}` });
|
|
}
|