12 lines
437 B
JavaScript
12 lines
437 B
JavaScript
document.addEventListener('DOMContentLoaded', () => {
|
|
if (typeof $.fn.lightGallery === 'function') {
|
|
$('.article').lightGallery({ selector: '.gallery-item' });
|
|
}
|
|
if (typeof $.fn.justifiedGallery === 'function') {
|
|
if ($('.justified-gallery > p > .gallery-item').length) {
|
|
$('.justified-gallery > p > .gallery-item').unwrap();
|
|
}
|
|
$('.justified-gallery').justifiedGallery();
|
|
}
|
|
});
|