File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/image-grid.js.tar
uyarreklam.com.tr/httpdocs/wp-content/plugins/so-widgets-bundle/widgets/image-grid/js/image-grid.js 0000644 00000002641 15154757050 0032415 0 ustar 00 var/www/vhosts /* globals jQuery, sowb */
var sowb = window.sowb || {};
jQuery( function ( $ ) {
sowb.setupImageGrids = function () {
$( '.sow-image-grid-wrapper' ).each( function () {
var $$ = $( this );
$$.imagesLoaded( function () {
var maxWidth = $$.data( 'max-width' ),
maxHeight = $$.data( 'max-height' );
if ( maxWidth !== undefined || maxHeight !== undefined ) {
$$.find( 'img' ).each( function () {
var $img = $( this ).css( 'opacity', 1 );
var ratio = $img.width() / $img.height();
var width = [];
// Lets set the widths of the image
if ( maxWidth !== undefined && $img.width() > maxWidth ) {
width.push( maxWidth );
}
if ( maxHeight !== undefined && $img.height() > maxHeight ) {
width.push( Math.round( maxHeight * ratio ) );
}
if ( width.length ) {
width = Math.min.apply( Math, width );
$img.css( 'max-width', width + 'px' );
}
} );
}
else {
$$.find( 'img' ).css( 'opacity', 1 );
}
var alignImages = function () {
};
alignImages();
$( window ).on( 'resize', alignImages );
var event = document.createEvent('Event');
event.initEvent('layoutComplete', true, true);
$$.get(0).dispatchEvent(event);
} );
} );
};
sowb.setupImageGrids();
$( sowb ).on( 'setup_widgets', sowb.setupImageGrids );
} );
window.sowb = sowb;