/** Set up image popup stuff (https://github.com/dimsemenov/Magnific-Popup) */ $(function () { const IMG_SCOPE = '#main > div.row:first-child > div:first-child'; if ($(`${IMG_SCOPE} img`).length <= 0) { return; } /* popup */ $(`${IMG_SCOPE} p > img[data-src], ${IMG_SCOPE} img[data-src].preview-img`).each( function () { let nextTag = $(this).next(); const title = nextTag.prop('tagName') === 'EM' ? nextTag.text() : ''; const src = $(this).attr('data-src'); // created by lozad.js $(this).wrap(``); } ); $('.popup').magnificPopup({ type: 'image', closeOnContentClick: true, showCloseBtn: false, zoom: { enabled: true, duration: 300, easing: 'ease-in-out' } }); /* markup the image links */ $(`${IMG_SCOPE} a`).has('img').addClass('img-link'); });