2019-10-02 16:15:37 +00:00
|
|
|
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();
|
|
|
|
}
|
2019-10-07 15:52:42 +00:00
|
|
|
});
|