(function ($, undefined) { window.supSocialSharePrintImage = function (img) { var printFrame = document.createElement('iframe'); printFrame.style.display = 'none'; document.body.appendChild(printFrame); var printDocument = printFrame.contentWindow.document; printDocument.write(''); printDocument.close(); printFrame.contentWindow.print(); } jQuery('[data-video-source]').attr('rel','video'); var init = false; function Gallery(selector, autoInit) { autoInit = autoInit || false; var $deferred = jQuery.Deferred(), self = this; this.loadedFonts = []; this.$container = $(selector); if(window.sggIsMobile) { this.$container.attr('data-is-mobile', window.sggIsMobile[0]); } this.$container.addClass('fitvidsignore'); this.$elements = this.$container.find('figure.grid-gallery-caption').fadeIn(); this.initialMargin = this.$elements.first().css('margin-bottom'); this.$navigation = this.$container.find('nav.grid-gallery-nav'); this.selectedCategory=""; this.galleryContainerId = this.$container.attr('id').replace(/[^a-z0-9]/g, ''); this.$qsData = null; this.$qsDuration = '750'; this.$qsEnable = false; this.areaPosition = this.$container.data('area-position'); // I think we wil need this in future this.pagination = { currentPage: 1, limit: 0, total: this.$elements.length, pages: 1, $wrapper: this.$container.find('.grid-gallery-pagination-wrap') }; this.loadingText = this.$container.data('show-more-loading-text'); this.popupTranslates = this.$container.data('popup-i18n-words'); if(this.$container.data('exif-as-popup') == 1) { this.popupTitleAttribute = 'data-exif-text'; } else { this.popupTitleAttribute = this.$container.data('popup-image-text'); } this.popupMaxHeight = '90%'; this.popupMaxWidth = '90%'; this.popup_opened_image = false; this.popupImageDimension = function(){}; this.resizeColorbox = function(){}; this.socialSharing = this.$container.data('social-sharing'); this.socialSharingWrapperClass = 'supsystic-grid-gallery-image-sharing'; this.socialSharingImageOperators = { 'pinterest': 'media', }; this.socialButtonsUrl = window.location.href.replace(window.location.hash,''); this.socialButtonsUrl = this.removePopUpHashFromUrl(this.socialButtonsUrl); if(this.socialButtonsUrl.indexOf('#') + 1 == this.socialButtonsUrl.length){ this.socialButtonsUrl = this.socialButtonsUrl.substr(0,this.socialButtonsUrl.length-1); } this.disablePopupHistory = !!this.$container.data('popup-disable-history'); if (this.isFluidHeight()) { this.$elements.addClass('wookmarked'); } $(document).trigger("GalleryExtend", this); if (autoInit) { // Interval check for init gallery when container becomes visible. // This need to properly load gallery from tabs, accordions or any other hidden containers. self.$container.data('isVisible', setInterval(function() { if (self.$container.is(':visible') || self.$container.hasClass('hidden-item')) { clearInterval(self.$container.data('isVisible')); self.init(); } }, 500)); } //Add init flag this.$container.addClass('initialized'); return $deferred.resolve(); } Gallery.prototype.isFluidHeight = (function () { return this.$container.is('.grid-gallery-fluid-height'); }); Gallery.prototype.isImageOverlay = (function () { return this.$container.find('.crop').is('.image-overlay'); }); Gallery.prototype.isMouseShadowShow = (function () { return this.$container.find('.grid-gallery-caption').is('.shadow-show'); }); Gallery.prototype.initQuicksand = (function () { if(this.$container.data('quicksand') == 'enabled' && this.$container.data('caption-builder-icons') !== 1) { this.$qsEnable = true; this.$qsDuration = this.$container.data('quicksand-duration'); this.$qsHolder = this.$container.find('.grid-gallery-photos:first'); this.$qsData = this.$container.find('.grid-gallery-photos > a'); } }); Gallery.prototype.showCaption = (function () { var isExifCaption = this.$container.data('exif-as-caption'); this.$container.find('.grid-gallery-figcaption-wrap').each(function() { if ($.trim($(this).html()) === '' && !$(this).find('img').length && $(this).has('.hi-icon').length === 0) { $(this).closest('figcaption').remove(); } }); this.$container.find('.gg-image-caption').each(function() { var $this = $(this) , captionHtmlEntry = ''; if(isExifCaption == 1) { var $objExist = $this.find('object'); if($objExist.length) { captionHtmlEntry = $this.find('object').html().replace(/(.*?)<\/a>/gi,"$&"); } else { captionHtmlEntry = $this.html(); } } else { captionHtmlEntry = $this.text().replace(/(.*?)<\/a>/gi,"$&"); } $this.html(captionHtmlEntry); $this.find('a').on('click', function(event) { event.stopPropagation(); }); }); $(document).on('click', '.sliphover-container object a', function(event) { event.stopPropagation(); }); }); Gallery.prototype.initWookmark = (function () { var self = this, horizontalScroll = this.$container.data('horizontal-scroll'), isMobile = parseInt($anyGallery.attr('data-is-mobile')), width = this.$container.data('width'), offset = 0, outerOffset = 0, spacing, windowWidth = $(window).width(), isFixedColumn = this.$container.data('gridType') == 3; // if responsive mode = 'one by one' and mobile -> run this method if (horizontalScroll && horizontalScroll.enabled) { if(horizontalScroll.responsiveMode == 1 && isMobile) {} else { return; } } // not for Mosaic Gallery if(this.$container.data('gridType') == 4) { return; } if (this.$container.data('offset')) { offset = this.$container.data('offset'); } if (this.$container.data('padding')) { outerOffset = parseInt(this.$container.data('padding')); } if (String(width).indexOf('%') > -1) { var imagesPerRow = Math.floor(100 / parseInt(width)); spacing = (offset * (imagesPerRow - 1)) + outerOffset * 2; width = (this.$container.width() - spacing) / 100 * parseInt(width); $.each(this.$container.find('img'), function() { aspectRatio = $(this).width() / $(this).height(); $(this).width(width); $(this).height(width / aspectRatio); }); } if(isFixedColumn) { var defaultWidth = parseInt(width), defaultHeight = parseInt(this.$container.data('height')), koefWidthHeigth = defaultWidth > 0 && defaultHeight > 0 ? defaultHeight/defaultWidth : 1; } function resizeColumns() { var columnsNumber = self.getResponsiveColumnsNumber(); spacing = (offset * (columnsNumber - 1)) + outerOffset * 2; width = Math.floor((self.$container.width() - spacing) / 100 * (100 / columnsNumber)); $.each(self.$elements, function(index, el) { var $el = $(el), $img = $el.find('img'); if($img.length && !$el.hasClass('initialized')) { var imageOriginalSize = self.getOriginalImageSizes($img.get(0)), elWidth = imageOriginalSize.width, elHeight = imageOriginalSize.height, aspectRatio = elWidth / elHeight, height = width / aspectRatio; if(isFixedColumn && $img.attr('data-gg-remote-image') == 1) { height = width * koefWidthHeigth; } $el.css({ width: width, height: height, }); if(!$img.hasClass('ggLazyImg')) { $img.removeClass('ggNotInitImg'); self.polaroidCaptionCalculate($el); if($el.hasClass('initialized')) { setTimeout(function() { $el.trigger('refreshWookmark'); }, 350); } } } }); self.$container.find('.grid-gallery-photos').removeAttr('data-min-height'); return width; } if (this.$container.data('columns-number')) { self.$container.find('figure:not(.initialized) img').css({ maxWidth: '100%', width: '100%', height: 'auto' }); resizeColumns(); } if (this.$container.data('width') !== 'auto' && !this.$qsEnable) { this.wookmark = this.$elements.filter(':visible').wookmark({ autoResize: true, container: this.$container.find('.grid-gallery-photos'), direction: this.areaPosition == 'right' ? 'right' : 'left', fillEmptySpace: false, flexibleWidth: !this.$container.data('columns-number'), itemWidth: width, offset: offset, align: this.areaPosition, outerOffset: outerOffset, onLayoutChanged: function() { setTimeout(function() { self.$container.trigger('wookmark.changed'); }, 50); }, onResize: function() { if ($(window).width() != windowWidth) { // Fix touchscreen resize event issue see #544 windowWidth = $(window).width(); clearTimeout(self.$container.data('resize.timer')); self.$container.data('resize.timer', setTimeout(function() { var overflow = self.$container.css('overflow'); self.$container.removeData('resize.timer'); self.$container.css('overflow', 'hidden'); if (self.$container.data('columns-number')) { self.$elements.wookmark({ container: self.$container.find('.grid-gallery-photos'), itemWidth: resizeColumns(), offset: offset, }); } self.$elements.last().one('transitionend webkitTransitionEnd oTransitionEnd', function() { self.$elements.filter(':visible').trigger('refreshWookmark'); }); self.$elements.filter(':visible').trigger('refreshWookmark'); self.$container.css('overflow', overflow); }, 250)); } } }).css({ 'margin': '0', 'transition': 'all 0.4s linear', }); } this.$container.find('.grid-gallery-photos').css('text-align', this.$container.data('area-position')); var minheight = this.$container.find('.grid-gallery-photos').data('min-height'); this.$container.find('.grid-gallery-photos').css({ 'min-height': minheight, }); this.$container.filter(':visible').find('.grid-gallery-photos > *').filter(':visible').css({ 'float': 'none', 'display': 'inline-block', 'vertical-align': 'top' }); }); Gallery.prototype.initControll = (function (){ $(document).on('click', "#cboxRight", function() { $.colorbox.prev(); }); $(document).on('click', "#cboxLeft", function() { $.colorbox.next(); }); }); Gallery.prototype.getPopupDimensions = (function(width, height){ var width = $(window).width() < width ? '90%' : width; var height = $(window).height() < height ? '90%' : height; if(width == '90%') { width = parseFloat(($(window).width() * parseFloat(width) / 100)); } if(height == '90%') { height = parseFloat(($(window).height() * parseFloat(height) / 100));} return { width: width, height: height }; }); /** * Get popup title depending on gallery settings * @return string title for popup image */ Gallery.prototype.getPopupTitle = (function($element){ var title, $img; if ($element.hasClass('hi-icon')) { $img = $element.closest('.grid-gallery-caption').find('img') } else { $img = $element.find('img'); } title = $img.attr(this.popupTitleAttribute); if (!title) { title = $img.attr('title'); } return title; }); Gallery.prototype.initPopup = (function() { var popupType = this.popupType = this.$container.data('popup-type'), popupMaxWidth = this.popupMaxWidth, popupMaxHeight = this.popupMaxHeight, sW = this.$container.data('popup-widthsize'), sH = this.$container.data('popup-heightsize'), popupOverlayTransper = this.$container.data('popup-transparency'), popupBackground = this.$container.data('popup-background'), slidePlay = this.$container.data('popup-slideshow') === true, slidePlayAuto = slidePlay && this.$container.data('popup-slideshow-auto') === true, popupHoverStop = slidePlay && this.$container.data('popup-hoverstop') === true, slideshowSpeed = this.$container.data('popup-slideshow-speed'), popupPlacementType = this.$container.data('popup-placement-type'), isLazyLoad = this.$container.data('lazyload-enable') == '1', self = this; function generateOverlayColor(selector, background, opacity, optype) { var style = selector + '{', rgb = self.hex2rgb(background); opacity = (100 - opacity) / 100; if (background) { color = 'rgba(' + rgb.r + ',' + rgb.g + ',' + rgb.b + ', '+ opacity + ')'; style += 'background-image:none!important; background-color:' + color + '!important;'; } else { if(optype){ style += 'opacity:' + opacity + '!important;'; } else { rgb = self.hex2rgb(self.rgb2hex($(selector).css('backgroundColor'))); color = 'rgba(' + rgb.r + ',' + rgb.g + ',' + rgb.b + ', '+ opacity + ')'; style += 'background-image:none!important; background-color:' + color + '!important;'; } } style += '}'; $('').appendTo("head"); } if(!!sW && sW !== 'auto'){ popupMaxWidth = sW; }else{ sW = '90%' } if(!!sH && sH !== 'auto'){ popupMaxHeight = sH; }else{ sH = '90%'; } var getImageDimension = function(){ return self.getPopupDimensions(sW,sH); }; var getColorboxImageDimension = function(){ var response = self.getPopupDimensions(sW,sH); if($(self.popup_opened_image).children('figure').attr('data-linked-images') || $(self.popup_opened_image).hasClass('linked-element') ){ response.width-=120; } return response; }; var delayResize = (function(){ var timer = 0; return function(callback, ms){ clearTimeout (timer); timer = setTimeout(callback, ms); }; })(); this.resizeColorbox = function(){ if(self.popup_opened_image === false) return; var dimensions = getColorboxImageDimension(); if(self.popup_opened_image.attr && self.popup_opened_image.attr('rel') == 'video' && (dimensions.width >= 0.9*window.innerWidth)) { return; } $(self.popup_opened_image).data('colorbox').maxWidth = dimensions.width; $(self.popup_opened_image).data('colorbox').maxHeight = dimensions.height; $(document).trigger("beforeResizeColorBoxResponsive", this); delayResize(function(){ $.colorbox.resizeResponsive(self.popup_opened_image); }, 500); }; //Responsive popup if width or height > window.width popupMaxWidth = $(window).width() < popupMaxWidth ? '90%' : popupMaxWidth; popupMaxHeight = $(window).height() < popupMaxHeight ? '90%' : popupMaxHeight; this.popupMaxWidth = popupMaxWidth; this.popupMaxHeight = popupMaxHeight; this.popupImageDimension = getImageDimension; if (popupType && popupType !== 'disable') { this.$container.parentsUntil('body').each(function() { var events = $._data(this, "events"), el = this; if (events && events.click) { $.each(events.click, function(index, ev) { if (ev.selector && self.$container.has($(ev.selector)).length) { $(el).off('click', ev.selector); } }); } }); } var hideLongTooltipTitles = this.$container.data('hide-long-tltp-title'); //===========|Popup gallery scripts|===========// if(popupType == 'colorbox') { var $this = this.$container; // simple selector var colorBoxItemSelector = '.grid-gallery-photos > .gg-colorbox:visible,' // mosaic selector + ' .grid-gallery-photos .gg-mosaic-wrapper .gg-colorbox,' // icon selector + ' .hi-icon.gg-colorbox:visible'; // for popup "Display only first image" if($this.hasClass('one-photo') || $this.hasClass('hidden-item')) { colorBoxItemSelector = '.grid-gallery-photos > .gg-colorbox, .hi-icon.gg-colorbox'; } if(this.initColorbox) { this.$container.find(colorBoxItemSelector).colorbox.remove('#'+this.$container.attr('id')); } else { if(hideLongTooltipTitles == 0) { var $colorboxtooltip = $('
'); $(document).on({ mouseenter: function () { $colorboxtooltip.addClass('active'); }, mouseleave: function () { setTimeout(function() { $colorboxtooltip.removeClass('active'); }, 400); } }, '#colorbox.' + $this.data('popup-theme') + ' #cboxTitle'); $(document).one('cbox_complete', function(event){ if (!$('#sggCboxTooltip').length) { $("#cboxWrapper").append($colorboxtooltip); } }); $(document).on('cbox_complete', function(event) { $colorboxtooltip.html($("#cboxTitle").html()); if($('#colorbox').width() < 300) { $('#colorbox').filter('.theme_1').find('#cboxSlideshow').css('bottom', '30px'); } }); } } this.initColorbox = true; var colorBoxConfig = { fadeOut: this.$container.data('popup-fadeOut'), fixed: true, maxHeight: getImageDimension().height, maxWidth: getImageDimension().width, scalePhotos: true, scrolling: false, returnFocus: false, slideshow: slidePlay && this.$container.data('popup-slideshow-speed'), slideshowAuto: slidePlayAuto, slideshowSpeed: slideshowSpeed, rel: this.$container.attr('id'), slideshowStart: self.popupTranslates.start_slideshow, slideshowStop: self.popupTranslates.stop_slideshow, current: self.popupTranslates.image + " {current} " + self.popupTranslates.of + " {total}", previous: self.popupTranslates.previous, next: self.popupTranslates.next, close: self.popupTranslates.close, 'isDisableRightClick': this.$container.attr('data-disable-right-click') == 'true', title: function() { return self.getPopupTitle($(this)); }, speed: 350, transition: 'elastic', onComplete: function(e) { self.changePopUpHash($(e.el).attr('id') || $(e.el).attr('data-id')); self.addSocialShareToPopUp($(e.el), $('#cboxContent'), 'popup'); self.$container.find('.grid-gallery-photos > .gg-colorbox, .hi-icon.gg-colorbox') .colorbox.resize(); $("#cboxLoadedContent").append("
"); }, onLoad: function(e){ if(self.popup_opened_image == e.el) return; self.popup_opened_image = e.el; var dimensions = getColorboxImageDimension(); $(self.popup_opened_image).data('colorbox').maxWidth = dimensions.width; $(self.popup_opened_image).data('colorbox').maxHeight = dimensions.height; }, onOpen: function(e) { //Enable/Disable stop slideshow on mouse hover if(popupHoverStop){ var timeoutId = 0; $('#cboxContent').hover(function(){ clearTimeout(timeoutId); $('.cboxSlideshow_on #cboxSlideshow').click(); },function(){ if(slidePlayAuto) { clearTimeout(timeoutId); timeoutId = setTimeout(function(){ $('.cboxSlideshow_off #cboxSlideshow').click(); },slideshowSpeed); } }) } }, onClosed: function(){ self.popup_opened_image = false; self.clearPopUpHash(); } }; if(popupPlacementType == 1 || popupPlacementType == 2) { colorBoxConfig['maxWidth'] = '100%'; colorBoxConfig['imgPlaceType'] = popupPlacementType; } this.$container.find(colorBoxItemSelector).off('click').colorbox(colorBoxConfig); $(window).resize(function(){ self.resizeColorbox(); }); $('#cboxOverlay').removeClass().addClass($this.data('popup-theme')+'-overlay'); $('#colorbox').removeClass().addClass($this.data('popup-theme')); generateOverlayColor('#cboxOverlay', popupBackground, popupOverlayTransper, true); } if(popupType == 'pretty-photo') { // simple selector var prettyPhotoItemSelector = '.grid-gallery-photos > a[data-rel^="prettyPhoto"]:visible,' + ' .grid-gallery-photos .gg-mosaic-wrapper a[data-rel^="prettyPhoto"],' // mosaic selector + ' .grid-gallery-photos .hi-icon-wrap > a[data-rel^="prettyPhoto"]:visible'; // icon selector // for popup "Display only first image" if(this.$container.hasClass('one-photo') || this.$container.hasClass('hidden-item')) { prettyPhotoItemSelector = '.grid-gallery-photos > a[data-rel^="prettyPhoto"],' + ' .grid-gallery-photos .gg-mosaic-wrapper a[data-rel^="prettyPhoto"],' // mosaic selector + ' .grid-gallery-photos .hi-icon-wrap > a[data-rel^="prettyPhoto"]'; // icon selector } if(!this.$prettyPhoto) { if(hideLongTooltipTitles == 0) { var $prettyPhotoTooltip = $('
'); $(document).on({ mouseenter: function () { $prettyPhotoTooltip.addClass('active'); }, mouseleave: function () { setTimeout(function () { $prettyPhotoTooltip.removeClass('active'); }, 400); } }, '.pp_content_container .pp_description'); } if(this.$container.attr('data-show-buttonlink-in-popup') == 1 && window.prettyPhotoDetailLink) { this.loadButtonsFontFamily(this.$container.attr('data-buttonlink-font'), null); } this.$prettyPhoto = this.$container .find(prettyPhotoItemSelector) .off('click') .ggPrettyPhoto({ hook: 'data-rel', theme: 'light_square', allow_resize: true, allow_expand: true, deeplinking: false, slideshow: slidePlay && this.$container.data('popup-slideshow-speed'), autoplay_slideshow: slidePlayAuto, social_tools: '', default_width: popupMaxWidth, default_height: popupMaxHeight, getImageDimensions : getImageDimension, 'is_lazy_load': isLazyLoad, 'ppTranslates': self.popupTranslates, 'isDisableRightClick': this.$container.attr('data-disable-right-click') == 'true', 'isShowRotateBtn': this.$container.attr('data-show-rotate-btn-in-popup') == 1, 'isShowAttributes': this.$container.attr('data-show-attributes-in-popup') == 1, 'attributesPosition': this.$container.attr('data-attributes-position'), 'attributesWidth': this.$container.attr('data-attributes-width'), 'isShowButtonLink': this.$container.attr('data-show-buttonlink-in-popup') == 1, 'buttonLinkStyle': this.$container.attr('data-buttonlink-style'), 'isShowLinkBtn': this.$container.attr('data-show-link-btn-in-popup') == 1, 'isShowHovThumbnail': this.$container.attr('data-show-thumb-hov-in-popup') == 1, 'galleryId': this.$container.attr('data-gg-id'), 'getTitle': function() {}, 'setImageTitleForPrepare': function($element) { var imgTile = self.getPopupTitle($element); return imgTile; }, 'popup_border_type': this.$container.attr('data-popup-border-type'), 'popup_border_color': this.$container.attr('data-popup-border-color'), 'popup_border_width': this.$container.attr('data-popup-border-width'), 'popup_border_enable': this.$container.attr('data-popup-border-enable') == 'on', changepicturecallback: function(element){ self.changePopUpHash(element.attr('id') || element.attr('data-id')); self.popup_opened_image = element; $('.pp_description').html(self.getPopupTitle(element)).show(); //add social share buttons if enabled self.addSocialShareToPopUp(element,$('.pp_hoverContainer'),'popup'); if(!slidePlay){ $('.pp_play').hide(); } // change detail link url if(self.$container.attr('data-show-link-btn-in-popup') == 1 && window.prettyPhotoDetailLink) { window.prettyPhotoDetailLink(element); } if(self.$container.attr('data-show-attributes-in-popup') == 1 && window.prettyPhotoAttributes) { window.prettyPhotoAttributes(element, self.$container); } //Enable/Disable stop slideshow on mouse hover if(popupHoverStop){ $('.pp_hoverContainer').hover(function(){ $('.pp_nav .pp_pause').click(); },function(){ if(slidePlayAuto) { $('.pp_nav .pp_play').click(); } }) } var $_desc = $('.pp_description'), desc_height = parseInt($_desc.height()), desc_line_height = parseInt($_desc.css('font-size')); if(desc_line_height < desc_height){ $('.pp_content').height($('.pp_fade').outerHeight(true) + $('.pp_details').outerHeight(true)); } if(hideLongTooltipTitles == 0) { if (!$('#sggPrettyPhototooltip').length) { $(".pp_content_container .pp_content").append($prettyPhotoTooltip); } $prettyPhotoTooltip.html($(".pp_content_container .pp_description").html()); } }, callback: function(){ self.popup_opened_image = false; self.clearPopUpHash(); } }); $(window).resize(function(){ if(!self.popup_opened_image || !self.$prettyPhoto) return; //if(self.$prettyPhoto[0].closest('div') != self.popup_opened_image[0].closest('div')) return; self.$prettyPhoto.open(self.popup_opened_image); }); } else { this.$prettyPhoto.refresh(this.$container.find(prettyPhotoItemSelector)); } generateOverlayColor('.pp_overlay', popupBackground, popupOverlayTransper, true); } if(popupType == 'photobox') { var photoBoxItemSelector = 'a.pbox:visible' , photoBoxConfig = null; // for popup "Display only first image" if(this.$container.hasClass('one-photo') || this.$container.hasClass('hidden-item') || this.$container.data('gridType') == '4') { photoBoxItemSelector = 'a.pbox'; } if (this.initPhotobox) { this.$container.find('.grid-gallery-photos').photobox('destroy'); } this.initPhotobox = true; photoBoxConfig = { autoplay: slidePlayAuto, 'isDisableRightClick': this.$container.attr('data-disable-right-click') == 'true', thumb: function(link) { if(self.$container.data('caption-buider') == '1' && self.$container.data('caption-builder-icons') == 1) { return link.closest('.grid-gallery-caption').find('img')[0]; } else if(self.$container.data('icons')) { return link.closest('.grid-gallery-caption').find('img')[0]; } return null; }, getTitle: function(el){ var nameTitle = self.getPopupTitle($(el)); return nameTitle; }, beforeShow: function(element){ self.changePopUpHash($(element).attr('id') || $(element).attr('data-id')); self.addSocialShareToPopUp($(element),$('#pbCaption'),'photobox',true); }, afterClose: function(){ self.clearPopUpHash(); } }; if(isLazyLoad) { photoBoxConfig['thumbAttr'] = 'data-gg-real-image-href'; } this.$container.find('.grid-gallery-photos').off('click').photobox(photoBoxItemSelector, photoBoxConfig); //Hide autoplay button when slideshow = false if(!this.$container.data('popup-slideshow')){ $("#pbAutoplayBtn").hide(); } //Enable/Disable stop slideshow on mouse hover if(popupHoverStop){ $('.pbWrapper img').hover(function(){ $('#pbOverlay .playing').click(); },function(){ if(slidePlayAuto) { $('#pbOverlay .play').click(); } }) } generateOverlayColor('#pbOverlay', popupBackground, popupOverlayTransper); } //===========|Popup gallery scripts|===========// }); Gallery.prototype.preventImages = (function() { var popupType = this.$container.data('popup-type'); if (popupType == 'disable') { this.$container.find('a.gg-link').off('click'); this.$container.find('a.gg-link:not([data-type=link])').addClass('disabled'); this.$container.on('click', 'a.gg-link', function(event) { if ($(this).data('type') !== 'link') { event.preventDefault(); event.stopPropagation(); } }); } }); Gallery.prototype.getResponsiveColumnsNumber = function() { var columnsData = this.$container.data('responsive-colums'), settings = [], columnsNumber = parseInt(this.$container.data('columns-number')); for (var key in columnsData) { settings.push(columnsData[key]); } settings.sort(function(a, b) { a.width = Number(a.width); b.width = Number(b.width); if (a.width > b.width) { return 1; } else if (a.width < b.width) { return -1; } else { return 0; } }); for (var i = 0, len = settings.length, windowWidth = $(window).width(), minBreakpoint = 0; i < len; i++) { if (windowWidth > minBreakpoint && windowWidth <= settings[i].width) { columnsNumber = Number(settings[i].columns); break; } minBreakpoint = settings[i].width; }; return columnsNumber; }; Gallery.prototype.initRowsMode = function() { var columnsNumber = parseInt(this.$container.data('columns-number')); if (this.$container.data('horizontal-scroll')) { return; } if (typeof this.$container.data('responsive-colums') == 'object') { columnsNumber = this.getResponsiveColumnsNumber(); } if (columnsNumber) { var containerWidth = parseInt(this.$container.width()), spacing = parseInt(this.$container.data('offset')), scaleHeight = parseInt(this.$container.data('width')) / parseInt(this.$container.data('height')), elementWidth = null, elementHeight = null; elementWidth = Math.floor((this.$container.width() - (columnsNumber - 1) * spacing) / columnsNumber); elementHeight = Math.floor(elementWidth / scaleHeight); this.$elements.each(function() { var $this = $(this); if (!$this.find('.post-feed-crop').length) { $this.css('width', elementWidth); if (!isNaN(elementHeight)) { $this.css('height', elementHeight); } else { $this.css('height', 'auto'); } } else { $this.find('figcaption').css('width', elementWidth); } }); this.$elements.find('.crop').css({ width: 'auto', height: 'auto' }); } }; Gallery.prototype.setImagesHeight = (function () { var $images = this.$container.find('img'); if ($images != undefined && $images.length > 0) { $images.each(function () { var $image = $(this), $wrapper = $image.parent(); if ($image.height() < $wrapper.height()) { $wrapper.css('height', $image.height()); } }); } }); Gallery.prototype.setOverlayTransparency = (function () { this.$elements.find('figcaption, [class*="caption-with-icons"]').each(function () { var $caption = $(this), alpha = (10 - parseInt($caption.data('alpha'), 10)) / 10, rgb = $caption.css('background-color'), rgba = rgb.replace(')', ', ' + alpha + ')').replace('rgb', 'rgba'); $caption.css('background', rgba); }); }); Gallery.prototype.setIconsPosition = (function () { var self = this; this.$elements.each(function () { var $element = $(this), isCaptionBuilderUsed = self.$container.data('caption-buider'), $wrapper = $element.find('div.hi-icon-wrap'), $icons = $element.find('a.hi-icon'); $icons.each(function () { var $icon = $(this), marginData = {}, marginY = ($element.height() / 2) - ($icon.height() / 2) - 10, marginX = $wrapper.data('margin'); if(marginX && !isCaptionBuilderUsed) { marginData['margin-left'] = marginX; marginData['margin-right'] = marginX; } if(marginY && !isCaptionBuilderUsed) { marginData['margin-top'] = Math.abs(marginY); } $icon.css(marginData); }); }); }); Gallery.prototype.initCategories = (function () { var $defaultElement = this.$navigation.find('a[data-tag="__all__"]'), $elements = this.$navigation.find('a'), $defaultBackground = $elements.first().css('background-color'); function shadeColor(color, percent) { var f=parseInt(color.slice(1),16),t=percent<0?0:255,p=percent<0?percent*-1:percent,R=f>>16,G=f>>8&0x00FF,B=f&0x0000FF; return "#" + (0x1000000+(Math.round((t-R)*p)+R)*0x10000+(Math.round((t-G)*p)+G)*0x100+(Math.round((t-B)*p)+B)).toString(16).slice(1); } bg = shadeColor('#' + this.rgb2hex($elements.first().css('borderTopColor')), 0.3); this.$navigation.find('a').on('click', $.proxy(function (event) { event.preventDefault(); var $category = $(event.currentTarget), requested = String($category.data('tag')), _defaultTag = '__all__', currentGallery = this.$navigation.parent().attr('id'); $elements.css('background-color', $defaultBackground); $category.css('background-color', bg); if (requested == _defaultTag) { this.$elements.each(function () { if ($(this).parent().attr('rel')) { $(this).parent().attr('rel', 'prettyPhoto['+currentGallery+']'); } }).fadeIn(); this.correctMargin(); this.initWookmark(); if (!this.isFluidHeight() && this.$qsEnable) { this.callQuicksand(this.$qsHolder, this.$qsData, this.$qsDuration); } return false; } if (!this.isFluidHeight() && this.$qsEnable) { var $filteredData = this.$qsData.filter(function () { var tags = $(this).children().data('tags'); if (typeof tags !== 'undefined') { tags = tags.split('|'); } return ($.inArray(requested, tags) > -1); }); this.callQuicksand(this.$qsHolder, $filteredData, this.$qsDuration); } else { $hidden = $(); $visible = $(); this.$elements.each(function () { var $element = $(this), tags = $element.data('tags'); if (typeof tags != 'string') { tags = String(tags); } if (tags != undefined) { tags = tags.split('|'); } if ($.inArray(requested, tags) > -1) { if ($element.parent().attr('rel')) { $element.parent().attr('rel', 'prettyPhoto['+currentGallery+'-'+requested+']'); } $visible.push(this); } else { $hidden.push(this); } }); $.when($hidden.fadeOut()).done($.proxy(function(){ $visible.fadeIn().css({'height':''}); this.correctMargin(); this.initWookmark(); }, this)); } }, this)); var firstTag = $elements.first().data('tag'); this.$container.find('a[data-tag="'+ firstTag+ '"]').trigger('click'); }); Gallery.prototype.callQuicksand = function($holder, $filteredData, duration) { self = this; $filteredData.find('figure.grid-gallery-caption').css('margin', this.initialMargin).parent().css('clear', 'none'); $holder.quicksand($filteredData, { duration: Number(duration), easing: 'swing', attribute: 'href', }, function() { $holder.css({ width: 'auto', height: 'auto' }).append(''); self.initPopup(); self.correctMargin(); if(self.$container.data('lazyload-enable') == '1') { // images area removed and filled new images self.initLazyLoad(); } } ); }; Gallery.prototype.hidePopupCaptions = function() { //never show alternative text for popup theme 6 on top of popup $('').appendTo("head"); if (this.$container.data('popup-captions') == 'hide') { $('').appendTo("head"); } }; Gallery.prototype.hidePaginationControls = (function () { return false; }); Gallery.prototype.setImageOverlay = (function() { if(this.isImageOverlay()) { this.$container.find('.grid-gallery-caption').each(function () { var image = $(this).find('img'); var crop = $(this).find('.image-overlay'); image.css('opacity', '0.2'); crop.css('background-color', '#424242'); $(this).on('mouseenter', function () { image.css('opacity', '1.0'); crop.css('background-color', 'inherit'); } ); $(this).on('mouseleave', function () { image.css('opacity', '0.2'); crop.css('background-color', '#424242'); }); }); } }); Gallery.prototype.setMouseShadow = (function() { var shadow = null, $selector = null, $captions = this.$container.find('.grid-gallery-caption'), self = this, showOver = function(event) { if (event.type === 'mouseenter') { $(this).css('box-shadow', self.mouseOverBoxShadow); } else { $(this).css('box-shadow', 'none'); } }, hideOver = function(event) { if (event.type === 'mouseenter') { $(this).css('box-shadow', 'none'); } else { $(this).css('box-shadow', self.mouseOverBoxShadow); } }; // only first Init elem has correct value if(!self.mouseOverBoxShadow) { self.mouseOverBoxShadow = $captions.filter(':first').css('box-shadow'); } if ($captions.is('.shadow-show')) { $captions.css('box-shadow', 'none'); $captions.off('hover').on('hover', showOver); } else if ($captions.is('.shadow-hide')) { $captions.off('hover').on('hover', hideOver); } }); Gallery.prototype.initPagination = (function () { var perPage = parseInt(this.$container.find('.grid-gallery-photos').data('per-page'), 10), buffer = [], page = 1, offset = 0 self = this; if (isNaN(perPage)) { this.$elements.fadeIn(); return false; } if(this.$container.data('gridType') == 4 && this.$container.data('show-mosaic-all-img') != 1) { this.$elements.fadeIn(); this.pagination.wrapper.hide(); return false; } var showCurrentPage = (function (gallery) { gallery.$elements.removeClass('current-page').hide(350); $.each(buffer[gallery.pagination.currentPage], function () { $(this).addClass('current-page').css({height:gallery.$container.data('height'),width:gallery.$container.data('width')}).show(function () { gallery.setIconsPosition(); self.correctMargin(); }); }); /* if (!gallery.isFluidHeight()) { $('.current-page .crop').css('height', function () { var height = null; $('.crop img').each(function () { if($(this).height() && !height) { height = $(this).height(); } }); return height; }); } */ }); this.pagination.limit = perPage; this.$elements.each($.proxy(function (index, el) { var currentIndex = index + 1; if ((currentIndex - offset) <= this.pagination.limit) { if (!$.isArray(buffer[page])) { buffer[page] = []; } buffer[page].push(el); } else { offset += this.pagination.limit; page += 1; buffer[page] = [el]; } }, this)).hide(); this.pagination.pages = Math.ceil(this.pagination.total / this.pagination.limit); var element=this.pagination.$wrapper.find('a.grid-gallery-page[data-page="1"]'); element.css('font-size','19pt'); this.pagination.$wrapper.find('a.grid-gallery-page').on('click', $.proxy(function (e) { e.preventDefault(); var element = $(e.currentTarget); var galery = Gallery.prototype; this.pagination.$wrapper.find('a.grid-gallery-page').each(function() { $(this).css('font-size','inherit'); }); galery.selectedCategory = element.data('page'); element.css('font-size','19pt'); var $anchor = $(e.currentTarget), requestedPage = $anchor.data('page'); this.pagination.currentPage = requestedPage; showCurrentPage(this); return false; }, this)); showCurrentPage(this); }); Gallery.prototype.hex=function(x) { return isNaN(x) ? "00" : hexDigits[(x - x % 16) / 16] + hexDigits[x % 16]; }; Gallery.prototype.rgb2hex = function(rgb) { if(rgb) { rgb = rgb.match(/^rgba?\((\d+),\s*(\d+),\s*(\d+)(?:,\s*(0\.\d+))?\)$/); function hex(x) { return ("0" + parseInt(x).toString(16)).slice(-2); } return hex(rgb[1]) + hex(rgb[2]) + hex(rgb[3]); } }; Gallery.prototype.hex2rgb = function(hex) { var shorthandRegex = /^#?([a-f\d])([a-f\d])([a-f\d])$/i; hex = hex.replace(shorthandRegex, function(m, r, g, b) { return r + r + g + g + b + b; }); var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex); return result ? { r: parseInt(result[1], 16), g: parseInt(result[2], 16), b: parseInt(result[3], 16) } : null; }; Gallery.prototype.importFontFamily = (function(familyName) { var styleId = 'sggFontFamilyStyle', $style = $('#' + styleId); if (!$style.length) { $style = $('