11 lines
446 B
JavaScript
11 lines
446 B
JavaScript
document.addEventListener('DOMContentLoaded', function () {
|
|
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();
|
|
}
|
|
}); |