let gridgallery={init:function(){gridgallery.loadGallery();gridgallery.lazyLoadImages();$(window).on("resize scroll",function(){gridgallery.lazyLoadImages()})},loadGallery:function(){$(".ce-gridgallery").each(function(){$(this).justifiedGallery({rowHeight:$(this).data("row-height"),margins:$(this).data("margins"),captions:$(this).data("captions")===1,randomize:$(this).data("randomize")===1,lastRow:$(this).data("last-row"),border:$(this).data("border")})})},lazyLoadImages:function(){$(".ce-gridgallery img.unloaded").each(function(){if(gridgallery.isInViewport($(this))===true){let src=$(this).attr("data-src");let srcset=$(this).attr("data-srcset");if(src!==undefined&&src!==""){$(this).attr("src",src).removeAttr("data-src")}if(srcset!==undefined&&srcset!==""){$(this).attr("srcset",srcset).removeAttr("data-srcset")}$(this).removeClass("unloaded")}})},isInViewport:function(a){let elementTop=a.offset().top;let elementBottom=elementTop+a.outerHeight();let viewportTop=$(window).scrollTop();let viewportBottom=viewportTop+$(window).height();return elementBottom>=viewportTop&&elementTop<=viewportBottom}};$(document).ready(function(){gridgallery.init()});