8 lines
304 B
JavaScript
8 lines
304 B
JavaScript
![]() |
document.addEventListener("DOMContentLoaded", function () {
|
||
|
if (typeof ($.fn.lightGallery) === 'function') {
|
||
|
$('.article').lightGallery({ selector: '.gallery-item' });
|
||
|
}
|
||
|
if (typeof ($.fn.justifiedGallery) === 'function') {
|
||
|
$('.justified-gallery').justifiedGallery();
|
||
|
}
|
||
|
});
|