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