Nach oben
// GALERIE - lightGallery
function bs_lightgallery(obj) {
if(!obj.length) return;
obj.lightGallery({
thumbnail: true,
selector: ".lightgallery__button"
});
}//end function
// READY - START
jQuery(document).ready(function(){
"use strict";
// Call BS_LIGHTGALLERY
bs_lightgallery($(".gallery"));
});
// Ende ready function()