This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
// GALLERY // | |
function setUpImages() { | |
const imageSelector = ".thumb-image"; | |
$.fancybox.defaults.hash = false; | |
//wrap anchor tags around large images and add fancybox class | |
$(imageSelector).wrap(`<a class="fancybox" style="display:block"></a>`); | |
$(imageSelector).parent().attr("href", $(this).data('src')); | |
$(imageSelector).parent().attr("class", "fancybox"); | |
$(imageSelector).attr("data-fancybox", "gallery"); |