File: /home/dwauav0tm6jp/hosted/jeffreyjhart_com/wp-content/themes/skylab-old/js/jquery.gallery.js
jQuery(document).ready(function(){
var $container = jQuery('.photos-gallery');
// Isotope
// modified Isotope methods for gutters in masonry
jQuery.Isotope.prototype._getMasonryGutterColumns = function() {
var gutter = this.options.masonry && this.options.masonry.gutterWidth || 0;
containerWidth = this.element.width();
this.masonry.columnWidth = this.options.masonry && this.options.masonry.columnWidth ||
// or use the size of the first item
this.$filteredAtoms.outerWidth(true) ||
// if there's no items, use size of container
containerWidth;
this.masonry.columnWidth += gutter;
this.masonry.cols = Math.floor( ( containerWidth + gutter ) / this.masonry.columnWidth );
this.masonry.cols = Math.max( this.masonry.cols, 1 );
};
jQuery.Isotope.prototype._masonryReset = function() {
// layout-specific props
this.masonry = {};
// FIXME shouldn't have to call this again
this._getMasonryGutterColumns();
var i = this.masonry.cols;
this.masonry.colYs = [];
while (i--) {
this.masonry.colYs.push( 0 );
}
};
jQuery.Isotope.prototype._masonryResizeChanged = function() {
var prevSegments = this.masonry.cols;
// update cols/rows
this._getMasonryGutterColumns();
// return if updated cols/rows is not equal to previous
return ( this.masonry.cols !== prevSegments );
};
var vid_per_page = parseInt($container.attr('data-offset'));
var currentcount = vid_per_page;
var total = parseInt($container.attr('data-total'));
var pageid = parseInt($container.attr('data-pageid'));
// cache jQuery window
var $window = jQuery(window);
// start up isotope with default settings
$container.imagesLoaded( function(){
reLayout();
$window.smartresize( reLayout );
});
function reLayout() {
var mediaQueryId = getComputedStyle( document.body, ':after' ).getPropertyValue('content');
// fix for firefox, remove double quotes "
if (navigator.userAgent.match('MSIE 8') == null) {
mediaQueryId = mediaQueryId.replace( /"/g, '' );
}
console.log( mediaQueryId );
var windowSize = $window.width();
var masonryOpts;
// update sizing options
switch ( mediaQueryId ) {
case 'large' :
masonryOpts = {
columnWidth: $container.width() / 5
};
break;
case 'big' :
masonryOpts = {
columnWidth: $container.width() / 4
};
break;
case 'medium' :
masonryOpts = {
columnWidth: $container.width() / 3
};
break;
case 'small' :
masonryOpts = {
columnWidth: $container.width() / 3
};
break;
case 'tiny' :
masonryOpts = {
columnWidth: $container.width() / 1
};
break;
}
$container.isotope({
resizable: false, // disable resizing by default, we'll trigger it manually
itemSelector : '.gallery-item',
masonry: masonryOpts
}).isotope( 'reLayout' );
}
});