1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-06-07 16:17:50 +00:00
Cotes Chung fe7afa379f
perf: replace jQuery with Vanilla JS (#1681)
Also replaced `magnific-popup` with `GLightbox`
2024-04-17 06:10:01 +08:00

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}` });
}