{"version":3,"file":"/pc/all/libs/lightbox/lightbox.js.map","sources":["/pc/all/libs/lightbox/lightbox.js"],"sourcesContent":["/* global define */\n//https://formstone.it/components/lightbox/\n(function(factory) {\n if (typeof define === \"function\" && define.amd) {\n define([\n \"jquery\",\n \"./core\",\n \"./touch\",\n \"./transition\",\n \"./viewer\"\n ], factory);\n } else {\n factory(jQuery, Formstone);\n }\n }(function($, Formstone) {\n\n \"use strict\";\n\n /**\n * @method private\n * @name setup\n * @description Setup plugin.\n */\n\n function setup() {\n $Body = Formstone.$body;\n $Locks = $(\"html, body\");\n\n OnLoad = Formstone.window.location.hash.replace(\"#\", \"\");\n }\n\n /**\n * @method private\n * @name resize\n * @description Handles window resize\n */\n\n function resize() {\n if (Instance) {\n resizeLightbox();\n }\n }\n\n /**\n * @method private\n * @name construct\n * @description Builds instance.\n * @param data [object] \"Instance data\"\n */\n\n function construct(data) {\n this.on(Events.click, data, buildLightbox);\n\n var gallery = this.data(Namespace + \"-gallery\");\n\n if (!OnLoaded && OnLoad && gallery === OnLoad) {\n OnLoaded = true;\n\n this.trigger(Events.click);\n }\n }\n\n /**\n * @method private\n * @name destruct\n * @description Tears down instance.\n * @param data [object] \"Instance data\"\n */\n\n function destruct(data) {\n closeLightbox();\n\n this.off(Events.namespace);\n }\n\n /**\n * @method private\n * @name initialize\n * @description Builds instance from $target.\n * @param $target [jQuery] \"Target jQuery object\"\n */\n\n function initialize($target, options) {\n if ($target instanceof $) {\n\n // Emulate event\n\n buildLightbox.apply(Window, [{\n data: $.extend(true, {}, {\n $object: $target\n }, Defaults, options || {})\n }]);\n }\n }\n\n /**\n * @method private\n * @name buildLightbox\n * @description Builds new lightbox.\n * @param e [object] \"Event data\"\n */\n\n function buildLightbox(e) {\n if (!Instance) {\n var data = e.data;\n\n if (data.overlay === true) {\n data.mobile = true; // Backwards compatibility\n }\n\n // Cache internal data\n Instance = $.extend({}, {\n visible: false,\n gallery: {\n active: false\n },\n isMobile: (Formstone.isMobile || data.mobile),\n isTouch: Formstone.support.touch,\n isAnimating: true,\n isZooming: false,\n oldContentHeight: 0,\n oldContentWidth: 0,\n metaHeight: 0,\n thumbnailHeight: 0,\n captionOpen: false,\n thumbnailsOpen: false,\n tapTimer: null\n }, data);\n\n Instance.isViewer = (Instance.isMobile && data.viewer && typeof $.fn.fsViewer !== \"undefined\");\n\n // Check target type\n var $el = data.$el,\n $object = data.$object,\n source = ($el && $el[0].href) ? $el[0].href || \"\" : \"\",\n hash = ($el && $el[0].hash) ? $el[0].hash || \"\" : \"\",\n sourceParts = source.toLowerCase().split(\".\").pop().split(/\\#|\\?/),\n type = ($el) ? $el.data(Namespace + \"-type\") : \"\",\n isImage = ((type === \"image\") || (source.match(data.fileTypes) || source.substr(0, 10) === \"data:image\")),\n isVideo = checkVideo(source),\n isUrl = ((type === \"url\") || (!isImage && !isVideo && source.substr(0, 4) === \"http\" && !hash)),\n isElement = ((type === \"element\") || (!isImage && !isVideo && !isUrl && (hash.substr(0, 1) === \"#\"))),\n isObject = ((typeof $object !== \"undefined\"));\n\n if (isElement) {\n source = hash;\n }\n\n // Retain default click\n if (!(isImage || isVideo || isUrl || isElement || isObject)) {\n Instance = null;\n\n return;\n }\n\n // Kill event\n Functions.killEvent(e);\n\n // Double the margin\n Instance.margin *= 2;\n\n if (isImage) {\n Instance.type = \"image\";\n } else if (isVideo) {\n Instance.type = \"video\";\n } else {\n Instance.type = \"element\";\n }\n\n if (isImage || isVideo) {\n // Check for gallery\n var id = $el.data(Namespace + \"-gallery\");\n\n if (id) {\n Instance.gallery.active = true;\n Instance.gallery.id = id;\n Instance.gallery.$items = $(\"a[data-lightbox-gallery= \" + Instance.gallery.id + \"], a[rel= \" + Instance.gallery.id + \"]\"); // backwards compatibility\n Instance.gallery.index = Instance.gallery.$items.index(Instance.$el);\n Instance.gallery.total = Instance.gallery.$items.length - 1;\n }\n }\n\n // Thumbnails support\n if (!(Instance.thumbnails && (isImage || isVideo) && Instance.gallery.active)) {\n Instance.thumbnails = false;\n }\n\n // Assemble HTML\n var html = '';\n if (!Instance.isMobile) {\n html += '
';\n }\n var lightboxClasses = [\n RawClasses.base,\n RawClasses.loading,\n RawClasses.animating,\n Instance.theme,\n Instance.customClass\n ];\n\n if (Instance.fixed) {\n lightboxClasses.push(RawClasses.fixed);\n }\n if (Instance.isMobile) {\n lightboxClasses.push(RawClasses.mobile);\n }\n if (Instance.isTouch) {\n lightboxClasses.push(RawClasses.touch);\n }\n if (isUrl) {\n lightboxClasses.push(RawClasses.iframed);\n }\n if (isElement || isObject) {\n lightboxClasses.push(RawClasses.inline);\n }\n if (Instance.thumbnails) {\n lightboxClasses.push(RawClasses.thumbnailed);\n }\n\n Instance.labels.lightbox = Instance.labels.lightbox.replace('{guid}', data.numGuid);\n\n html += '';\n html += '' + (Instance.gallery.index + 1) + ' ';\n html += Instance.labels.count;\n html += ' ' + (Instance.gallery.total + 1) + '';\n html += '
';\n }\n html += '' + t + '
' : \"\";\n }\n\n /**\n * @method private\n * @name toggleThumbnails\n * @description Toggle thumbnails.\n */\n\n function toggleThumbnails(e) {\n Functions.killEvent(e);\n\n if (Instance.thumbnailsOpen) {\n closeThumbnails();\n } else {\n closeCaption();\n\n Instance.$lightbox.addClass(RawClasses.thumbnails_open)\n .find(Classes.thumbnail_toggle).text(Instance.labels.thumbnailsOpen);\n\n Instance.thumbnailsOpen = true;\n }\n }\n\n /**\n * @method private\n * @name closeThumbnails\n * @description Close thumbnails.\n */\n\n function closeThumbnails() {\n Instance.$lightbox.removeClass(RawClasses.thumbnails_open)\n .find(Classes.thumbnail_toggle).text(Instance.labels.thumbnailsClosed);\n Instance.thumbnailsOpen = false;\n }\n\n /**\n * @method private\n * @name loadImage\n * @description Loads source image.\n * @param source [string] \"Source image URL\"\n */\n\n function loadImage(source) {\n if (Instance.isViewer) {\n Instance.$imageContainer = $('Error Loading Resource