Server IP : 103.118.17.23 / Your IP : 216.73.216.188 Web Server : Microsoft-IIS/10.0 System : Windows NT RESELLERPLESK22 10.0 build 20348 (Windows Server 2016) AMD64 User : IWAM_plesk(default) ( 0) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : E:/Inetpub/vhosts/mesa.org.in/httpdocs/js/trigger/ |
Upload File : |
/* * Initialization script for Grid Photo Gallery */ jQuery(function($){ "use strict"; var enable_gridphotogallery = function( content ){ var gridPhotoGallery = content.find('.gridPhotoGallery'); if(gridPhotoGallery && (typeof($.fn.isotope) != 'undefined')) { $.each(gridPhotoGallery, function(i, el) { var $el = $(el), itemWidth = Math.floor( $(el).width() / $el.attr('data-cols') ), doIsotope = $el.isotope({ itemSelector : '.gridPhotoGallery__item', masonry: { columnWidth: '.gridPhotoGallery__item--sizer', gutter:0 } }); doIsotope.isotope('layout'); }); } jQuery(window).on('resize', function(){ gridPhotoGallery.isotope('layout'); }).trigger('resize'); }; var grid_gallery = $('.gridPhotoGallery-container'); if(grid_gallery){ enable_gridphotogallery ( grid_gallery ); } });