gallery.js 304 B

12345678
  1. document.addEventListener('DOMContentLoaded', function () {
  2. if (typeof ($.fn.lightGallery) === 'function') {
  3. $('.article').lightGallery({ selector: '.gallery-item' });
  4. }
  5. if (typeof ($.fn.justifiedGallery) === 'function') {
  6. $('.justified-gallery').justifiedGallery();
  7. }
  8. });