{"version":3,"sources":["webpack:////tmp/build_74596f24/app/assets/es6/vendor/jquery.magnific-popup.js","webpack:////tmp/build_74596f24/app/assets/es6/vendor/jquery.magnific-popup.js?dcfe"],"names":["module","exports","__webpack_require__"],"mappings":"8EAAAA,EAAAC,QAAA,q0hGCAAC,EAAQ,OAARA,CAAyEA,EAAQ","file":"9-9-ab38b503ac4d79aa844d.js","sourcesContent":["module.exports = \"/*! Magnific Popup - v1.1.0 - 2016-02-20\\n* http://dimsemenov.com/plugins/magnific-popup/\\n* Copyright (c) 2016 Dmitry Semenov; */\\n; (function (factory) {\\n\\tif (typeof define === 'function' && define.amd) {\\n\\t\\t// AMD. Register as an anonymous module. \\n\\t\\tdefine(['jquery'], factory);\\n\\t} else if (typeof exports === 'object') {\\n\\t\\t// Node/CommonJS \\n\\t\\tfactory(require('jquery'));\\n\\t} else {\\n\\t\\t// Browser globals \\n\\t\\tfactory(window.jQuery || window.Zepto);\\n\\t}\\n}(function ($) {\\n\\n\\t/*>>core*/\\n\\t/**\\n\\t * \\n\\t * Magnific Popup Core JS file\\n\\t * \\n\\t */\\n\\n\\n\\t/**\\n\\t * Private static constants\\n\\t */\\n\\tvar CLOSE_EVENT = 'Close',\\n\\t\\tBEFORE_CLOSE_EVENT = 'BeforeClose',\\n\\t\\tAFTER_CLOSE_EVENT = 'AfterClose',\\n\\t\\tBEFORE_APPEND_EVENT = 'BeforeAppend',\\n\\t\\tMARKUP_PARSE_EVENT = 'MarkupParse',\\n\\t\\tOPEN_EVENT = 'Open',\\n\\t\\tCHANGE_EVENT = 'Change',\\n\\t\\tNS = 'mfp',\\n\\t\\tEVENT_NS = '.' + NS,\\n\\t\\tREADY_CLASS = 'mfp-ready',\\n\\t\\tREMOVING_CLASS = 'mfp-removing',\\n\\t\\tPREVENT_CLOSE_CLASS = 'mfp-prevent-close';\\n\\n\\n\\t/**\\n\\t * Private vars \\n\\t */\\n\\t/*jshint -W079 */\\n\\tvar mfp, // As we have only one instance of MagnificPopup object, we define it locally to not to use 'this'\\n\\t\\tMagnificPopup = function () { },\\n\\t\\t_isJQ = !!(window.jQuery),\\n\\t\\t_prevStatus,\\n\\t\\t_window = $(window),\\n\\t\\t_document,\\n\\t\\t_prevContentType,\\n\\t\\t_wrapClasses,\\n\\t\\t_currPopupType;\\n\\n\\n\\t/**\\n\\t * Private functions\\n\\t */\\n\\tvar _mfpOn = function (name, f) {\\n\\t\\tmfp.ev.on(NS + name + EVENT_NS, f);\\n\\t},\\n\\t\\t_getEl = function (className, appendTo, html, raw) {\\n\\t\\t\\tvar el = document.createElement('div');\\n\\t\\t\\tel.className = 'mfp-' + className;\\n\\t\\t\\tif (html) {\\n\\t\\t\\t\\tel.innerHTML = html;\\n\\t\\t\\t}\\n\\t\\t\\tif (!raw) {\\n\\t\\t\\t\\tel = $(el);\\n\\t\\t\\t\\tif (appendTo) {\\n\\t\\t\\t\\t\\tel.appendTo(appendTo);\\n\\t\\t\\t\\t}\\n\\t\\t\\t} else if (appendTo) {\\n\\t\\t\\t\\tappendTo.appendChild(el);\\n\\t\\t\\t}\\n\\t\\t\\treturn el;\\n\\t\\t},\\n\\t\\t_mfpTrigger = function (e, data) {\\n\\t\\t\\tmfp.ev.triggerHandler(NS + e, data);\\n\\n\\t\\t\\tif (mfp.st.callbacks) {\\n\\t\\t\\t\\t// converts \\\"mfpEventName\\\" to \\\"eventName\\\" callback and triggers it if it's present\\n\\t\\t\\t\\te = e.charAt(0).toLowerCase() + e.slice(1);\\n\\t\\t\\t\\tif (mfp.st.callbacks[e]) {\\n\\t\\t\\t\\t\\tmfp.st.callbacks[e].apply(mfp, $.isArray(data) ? data : [data]);\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t},\\n\\t\\t_getCloseBtn = function (type) {\\n\\t\\t\\tif (type !== _currPopupType || !mfp.currTemplate.closeBtn) {\\n\\t\\t\\t\\tmfp.currTemplate.closeBtn = $(mfp.st.closeMarkup.replace('%title%', mfp.st.tClose));\\n\\t\\t\\t\\t_currPopupType = type;\\n\\t\\t\\t}\\n\\t\\t\\treturn mfp.currTemplate.closeBtn;\\n\\t\\t},\\n\\t\\t// Initialize Magnific Popup only when called at least once\\n\\t\\t_checkInstance = function () {\\n\\t\\t\\tif (!$.magnificPopup.instance) {\\n\\t\\t\\t\\t/*jshint -W020 */\\n\\t\\t\\t\\tmfp = new MagnificPopup();\\n\\t\\t\\t\\tmfp.init();\\n\\t\\t\\t\\t$.magnificPopup.instance = mfp;\\n\\t\\t\\t}\\n\\t\\t},\\n\\t\\t// CSS transition detection, http://stackoverflow.com/questions/7264899/detect-css-transitions-using-javascript-and-without-modernizr\\n\\t\\tsupportsTransitions = function () {\\n\\t\\t\\tvar s = document.createElement('p').style, // 's' for style. better to create an element if body yet to exist\\n\\t\\t\\t\\tv = ['ms', 'O', 'Moz', 'Webkit']; // 'v' for vendor\\n\\n\\t\\t\\tif (s['transition'] !== undefined) {\\n\\t\\t\\t\\treturn true;\\n\\t\\t\\t}\\n\\n\\t\\t\\twhile (v.length) {\\n\\t\\t\\t\\tif (v.pop() + 'Transition' in s) {\\n\\t\\t\\t\\t\\treturn true;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\treturn false;\\n\\t\\t};\\n\\n\\n\\n\\t/**\\n\\t * Public functions\\n\\t */\\n\\tMagnificPopup.prototype = {\\n\\n\\t\\tconstructor: MagnificPopup,\\n\\n\\t\\t/**\\n\\t\\t * Initializes Magnific Popup plugin. \\n\\t\\t * This function is triggered only once when $.fn.magnificPopup or $.magnificPopup is executed\\n\\t\\t */\\n\\t\\tinit: function () {\\n\\t\\t\\tvar appVersion = navigator.appVersion;\\n\\t\\t\\tmfp.isLowIE = mfp.isIE8 = document.all && !document.addEventListener;\\n\\t\\t\\tmfp.isAndroid = (/android/gi).test(appVersion);\\n\\t\\t\\tmfp.isIOS = (/iphone|ipad|ipod/gi).test(appVersion);\\n\\t\\t\\tmfp.supportsTransition = supportsTransitions();\\n\\n\\t\\t\\t// We disable fixed positioned lightbox on devices that don't handle it nicely.\\n\\t\\t\\t// If you know a better way of detecting this - let me know.\\n\\t\\t\\tmfp.probablyMobile = (mfp.isAndroid || mfp.isIOS || /(Opera Mini)|Kindle|webOS|BlackBerry|(Opera Mobi)|(Windows Phone)|IEMobile/i.test(navigator.userAgent));\\n\\t\\t\\t_document = $(document);\\n\\n\\t\\t\\tmfp.popupsCache = {};\\n\\t\\t},\\n\\n\\t\\t/**\\n\\t\\t * Opens popup\\n\\t\\t * @param data [description]\\n\\t\\t */\\n\\t\\topen: function (data) {\\n\\n\\t\\t\\tvar i;\\n\\n\\t\\t\\tif (data.isObj === false) {\\n\\t\\t\\t\\t// convert jQuery collection to array to avoid conflicts later\\n\\t\\t\\t\\tmfp.items = data.items.toArray();\\n\\n\\t\\t\\t\\tmfp.index = 0;\\n\\t\\t\\t\\tvar items = data.items,\\n\\t\\t\\t\\t\\titem;\\n\\t\\t\\t\\tfor (i = 0; i < items.length; i++) {\\n\\t\\t\\t\\t\\titem = items[i];\\n\\t\\t\\t\\t\\tif (item.parsed) {\\n\\t\\t\\t\\t\\t\\titem = item.el[0];\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\tif (item === data.el[0]) {\\n\\t\\t\\t\\t\\t\\tmfp.index = i;\\n\\t\\t\\t\\t\\t\\tbreak;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\t\\t\\t} else {\\n\\t\\t\\t\\tmfp.items = $.isArray(data.items) ? data.items : [data.items];\\n\\t\\t\\t\\tmfp.index = data.index || 0;\\n\\t\\t\\t}\\n\\n\\t\\t\\t// if popup is already opened - we just update the content\\n\\t\\t\\tif (mfp.isOpen) {\\n\\t\\t\\t\\tmfp.updateItemHTML();\\n\\t\\t\\t\\treturn;\\n\\t\\t\\t}\\n\\n\\t\\t\\tmfp.types = [];\\n\\t\\t\\t_wrapClasses = '';\\n\\t\\t\\tif (data.mainEl && data.mainEl.length) {\\n\\t\\t\\t\\tmfp.ev = data.mainEl.eq(0);\\n\\t\\t\\t} else {\\n\\t\\t\\t\\tmfp.ev = _document;\\n\\t\\t\\t}\\n\\n\\t\\t\\tif (data.key) {\\n\\t\\t\\t\\tif (!mfp.popupsCache[data.key]) {\\n\\t\\t\\t\\t\\tmfp.popupsCache[data.key] = {};\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\tmfp.currTemplate = mfp.popupsCache[data.key];\\n\\t\\t\\t} else {\\n\\t\\t\\t\\tmfp.currTemplate = {};\\n\\t\\t\\t}\\n\\n\\n\\n\\t\\t\\tmfp.st = $.extend(true, {}, $.magnificPopup.defaults, data);\\n\\t\\t\\tmfp.fixedContentPos = mfp.st.fixedContentPos === 'auto' ? !mfp.probablyMobile : mfp.st.fixedContentPos;\\n\\n\\t\\t\\tif (mfp.st.modal) {\\n\\t\\t\\t\\tmfp.st.closeOnContentClick = false;\\n\\t\\t\\t\\tmfp.st.closeOnBgClick = false;\\n\\t\\t\\t\\tmfp.st.showCloseBtn = false;\\n\\t\\t\\t\\tmfp.st.enableEscapeKey = false;\\n\\t\\t\\t}\\n\\n\\n\\t\\t\\t// Building markup\\n\\t\\t\\t// main containers are created only once\\n\\t\\t\\tif (!mfp.bgOverlay) {\\n\\n\\t\\t\\t\\t// Dark overlay\\n\\t\\t\\t\\tmfp.bgOverlay = _getEl('bg').on('click' + EVENT_NS, function () {\\n\\t\\t\\t\\t\\tmfp.close();\\n\\t\\t\\t\\t});\\n\\n\\t\\t\\t\\tmfp.wrap = _getEl('wrap').attr('tabindex', -1).on('click' + EVENT_NS, function (e) {\\n\\t\\t\\t\\t\\tif (mfp._checkIfClose(e.target)) {\\n\\t\\t\\t\\t\\t\\tmfp.close();\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t});\\n\\n\\t\\t\\t\\tmfp.container = _getEl('container', mfp.wrap);\\n\\t\\t\\t}\\n\\n\\t\\t\\tmfp.contentContainer = _getEl('content');\\n\\t\\t\\tif (mfp.st.preloader) {\\n\\t\\t\\t\\tmfp.preloader = _getEl('preloader', mfp.container, mfp.st.tLoading);\\n\\t\\t\\t}\\n\\n\\n\\t\\t\\t// Initializing modules\\n\\t\\t\\tvar modules = $.magnificPopup.modules;\\n\\t\\t\\tfor (i = 0; i < modules.length; i++) {\\n\\t\\t\\t\\tvar n = modules[i];\\n\\t\\t\\t\\tn = n.charAt(0).toUpperCase() + n.slice(1);\\n\\t\\t\\t\\tmfp['init' + n].call(mfp);\\n\\t\\t\\t}\\n\\t\\t\\t_mfpTrigger('BeforeOpen');\\n\\n\\n\\t\\t\\tif (mfp.st.showCloseBtn) {\\n\\t\\t\\t\\t// Close button\\n\\t\\t\\t\\tif (!mfp.st.closeBtnInside) {\\n\\t\\t\\t\\t\\tmfp.wrap.append(_getCloseBtn());\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t_mfpOn(MARKUP_PARSE_EVENT, function (e, template, values, item) {\\n\\t\\t\\t\\t\\t\\tvalues.close_replaceWith = _getCloseBtn(item.type);\\n\\t\\t\\t\\t\\t});\\n\\t\\t\\t\\t\\t_wrapClasses += ' mfp-close-btn-in';\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\tif (mfp.st.alignTop) {\\n\\t\\t\\t\\t_wrapClasses += ' mfp-align-top';\\n\\t\\t\\t}\\n\\n\\n\\n\\t\\t\\tif (mfp.fixedContentPos) {\\n\\t\\t\\t\\tmfp.wrap.css({\\n\\t\\t\\t\\t\\toverflow: mfp.st.overflowY,\\n\\t\\t\\t\\t\\toverflowX: 'hidden',\\n\\t\\t\\t\\t\\toverflowY: mfp.st.overflowY\\n\\t\\t\\t\\t});\\n\\t\\t\\t} else {\\n\\t\\t\\t\\tmfp.wrap.css({\\n\\t\\t\\t\\t\\ttop: _window.scrollTop(),\\n\\t\\t\\t\\t\\tposition: 'absolute'\\n\\t\\t\\t\\t});\\n\\t\\t\\t}\\n\\t\\t\\tif (mfp.st.fixedBgPos === false || (mfp.st.fixedBgPos === 'auto' && !mfp.fixedContentPos)) {\\n\\t\\t\\t\\tmfp.bgOverlay.css({\\n\\t\\t\\t\\t\\theight: _document.height(),\\n\\t\\t\\t\\t\\tposition: 'absolute'\\n\\t\\t\\t\\t});\\n\\t\\t\\t}\\n\\n\\n\\n\\t\\t\\tif (mfp.st.enableEscapeKey) {\\n\\t\\t\\t\\t// Close on ESC key\\n\\t\\t\\t\\t_document.on('keyup' + EVENT_NS, function (e) {\\n\\t\\t\\t\\t\\tif (e.keyCode === 27) {\\n\\t\\t\\t\\t\\t\\tmfp.close();\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t});\\n\\t\\t\\t}\\n\\n\\t\\t\\t_window.on('resize' + EVENT_NS, function () {\\n\\t\\t\\t\\tmfp.updateSize();\\n\\t\\t\\t});\\n\\n\\n\\t\\t\\tif (!mfp.st.closeOnContentClick) {\\n\\t\\t\\t\\t_wrapClasses += ' mfp-auto-cursor';\\n\\t\\t\\t}\\n\\n\\t\\t\\tif (_wrapClasses)\\n\\t\\t\\t\\tmfp.wrap.addClass(_wrapClasses);\\n\\n\\n\\t\\t\\t// this triggers recalculation of layout, so we get it once to not to trigger twice\\n\\t\\t\\tvar windowHeight = mfp.wH = _window.height();\\n\\n\\n\\t\\t\\tvar windowStyles = {};\\n\\n\\t\\t\\tif (mfp.fixedContentPos) {\\n\\t\\t\\t\\tif (mfp._hasScrollBar(windowHeight)) {\\n\\t\\t\\t\\t\\tvar s = mfp._getScrollbarSize();\\n\\t\\t\\t\\t\\tif (s) {\\n\\t\\t\\t\\t\\t\\twindowStyles.marginRight = s;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\tif (mfp.fixedContentPos) {\\n\\t\\t\\t\\tif (!mfp.isIE7) {\\n\\t\\t\\t\\t\\twindowStyles.overflow = 'hidden';\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t// ie7 double-scroll bug\\n\\t\\t\\t\\t\\t$('body, html').css('overflow', 'hidden');\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\n\\n\\t\\t\\tvar classesToadd = mfp.st.mainClass;\\n\\t\\t\\tif (mfp.isIE7) {\\n\\t\\t\\t\\tclassesToadd += ' mfp-ie7';\\n\\t\\t\\t}\\n\\t\\t\\tif (classesToadd) {\\n\\t\\t\\t\\tmfp._addClassToMFP(classesToadd);\\n\\t\\t\\t}\\n\\n\\t\\t\\t// add content\\n\\t\\t\\tmfp.updateItemHTML();\\n\\n\\t\\t\\t_mfpTrigger('BuildControls');\\n\\n\\t\\t\\t// remove scrollbar, add margin e.t.c\\n\\t\\t\\t$('html').css(windowStyles);\\n\\n\\t\\t\\t// add everything to DOM\\n\\t\\t\\tmfp.bgOverlay.add(mfp.wrap).prependTo(mfp.st.prependTo || $(document.body));\\n\\n\\t\\t\\t// Save last focused element\\n\\t\\t\\tmfp._lastFocusedEl = document.activeElement;\\n\\n\\t\\t\\t// Wait for next cycle to allow CSS transition\\n\\t\\t\\tsetTimeout(function () {\\n\\n\\t\\t\\t\\tif (mfp.content) {\\n\\t\\t\\t\\t\\tmfp._addClassToMFP(READY_CLASS);\\n\\t\\t\\t\\t\\tmfp._setFocus();\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t// if content is not defined (not loaded e.t.c) we add class only for BG\\n\\t\\t\\t\\t\\tmfp.bgOverlay.addClass(READY_CLASS);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// Trap the focus in popup\\n\\t\\t\\t\\t_document.on('focusin' + EVENT_NS, mfp._onFocusIn);\\n\\n\\t\\t\\t}, 16);\\n\\n\\t\\t\\tmfp.isOpen = true;\\n\\t\\t\\tmfp.updateSize(windowHeight);\\n\\t\\t\\t_mfpTrigger(OPEN_EVENT);\\n\\n\\t\\t\\treturn data;\\n\\t\\t},\\n\\n\\t\\t/**\\n\\t\\t * Closes the popup\\n\\t\\t */\\n\\t\\tclose: function () {\\n\\t\\t\\tif (!mfp.isOpen) return;\\n\\t\\t\\t_mfpTrigger(BEFORE_CLOSE_EVENT);\\n\\n\\t\\t\\tmfp.isOpen = false;\\n\\t\\t\\t// for CSS3 animation\\n\\t\\t\\tif (mfp.st.removalDelay && !mfp.isLowIE && mfp.supportsTransition) {\\n\\t\\t\\t\\tmfp._addClassToMFP(REMOVING_CLASS);\\n\\t\\t\\t\\tsetTimeout(function () {\\n\\t\\t\\t\\t\\tmfp._close();\\n\\t\\t\\t\\t}, mfp.st.removalDelay);\\n\\t\\t\\t} else {\\n\\t\\t\\t\\tmfp._close();\\n\\t\\t\\t}\\n\\t\\t},\\n\\n\\t\\t/**\\n\\t\\t * Helper for close() function\\n\\t\\t */\\n\\t\\t_close: function () {\\n\\t\\t\\t_mfpTrigger(CLOSE_EVENT);\\n\\n\\t\\t\\tvar classesToRemove = REMOVING_CLASS + ' ' + READY_CLASS + ' ';\\n\\n\\t\\t\\tmfp.bgOverlay.detach();\\n\\t\\t\\tmfp.wrap.detach();\\n\\t\\t\\tmfp.container.empty();\\n\\n\\t\\t\\tif (mfp.st.mainClass) {\\n\\t\\t\\t\\tclassesToRemove += mfp.st.mainClass + ' ';\\n\\t\\t\\t}\\n\\n\\t\\t\\tmfp._removeClassFromMFP(classesToRemove);\\n\\n\\t\\t\\tif (mfp.fixedContentPos) {\\n\\t\\t\\t\\tvar windowStyles = { marginRight: '' };\\n\\t\\t\\t\\tif (mfp.isIE7) {\\n\\t\\t\\t\\t\\t$('body, html').css('overflow', '');\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\twindowStyles.overflow = '';\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\t$('html').css(windowStyles);\\n\\t\\t\\t}\\n\\n\\t\\t\\t_document.off('keyup' + EVENT_NS + ' focusin' + EVENT_NS);\\n\\t\\t\\tmfp.ev.off(EVENT_NS);\\n\\n\\t\\t\\t// clean up DOM elements that aren't removed\\n\\t\\t\\tmfp.wrap.attr('class', 'mfp-wrap').removeAttr('style');\\n\\t\\t\\tmfp.bgOverlay.attr('class', 'mfp-bg');\\n\\t\\t\\tmfp.container.attr('class', 'mfp-container');\\n\\n\\t\\t\\t// remove close button from target element\\n\\t\\t\\tif (mfp.st.showCloseBtn &&\\n\\t\\t\\t\\t(!mfp.st.closeBtnInside || mfp.currTemplate[mfp.currItem.type] === true)) {\\n\\t\\t\\t\\tif (mfp.currTemplate.closeBtn)\\n\\t\\t\\t\\t\\tmfp.currTemplate.closeBtn.detach();\\n\\t\\t\\t}\\n\\n\\n\\t\\t\\tif (mfp.st.autoFocusLast && mfp._lastFocusedEl) {\\n\\t\\t\\t\\t$(mfp._lastFocusedEl).focus(); // put tab focus back\\n\\t\\t\\t}\\n\\t\\t\\tmfp.currItem = null;\\n\\t\\t\\tmfp.content = null;\\n\\t\\t\\tmfp.currTemplate = null;\\n\\t\\t\\tmfp.prevHeight = 0;\\n\\n\\t\\t\\t_mfpTrigger(AFTER_CLOSE_EVENT);\\n\\t\\t},\\n\\n\\t\\tupdateSize: function (winHeight) {\\n\\n\\t\\t\\tif (mfp.isIOS) {\\n\\t\\t\\t\\t// fixes iOS nav bars https://github.com/dimsemenov/Magnific-Popup/issues/2\\n\\t\\t\\t\\tvar zoomLevel = document.documentElement.clientWidth / window.innerWidth;\\n\\t\\t\\t\\tvar height = window.innerHeight * zoomLevel;\\n\\t\\t\\t\\tmfp.wrap.css('height', height);\\n\\t\\t\\t\\tmfp.wH = height;\\n\\t\\t\\t} else {\\n\\t\\t\\t\\tmfp.wH = winHeight || _window.height();\\n\\t\\t\\t}\\n\\t\\t\\t// Fixes #84: popup incorrectly positioned with position:relative on body\\n\\t\\t\\tif (!mfp.fixedContentPos) {\\n\\t\\t\\t\\tmfp.wrap.css('height', mfp.wH);\\n\\t\\t\\t}\\n\\n\\t\\t\\t_mfpTrigger('Resize');\\n\\n\\t\\t},\\n\\n\\t\\t/**\\n\\t\\t * Set content of popup based on current index\\n\\t\\t */\\n\\t\\tupdateItemHTML: function () {\\n\\t\\t\\tvar item = mfp.items[mfp.index];\\n\\n\\t\\t\\t// Detach and perform modifications\\n\\t\\t\\tmfp.contentContainer.detach();\\n\\n\\t\\t\\tif (mfp.content)\\n\\t\\t\\t\\tmfp.content.detach();\\n\\n\\t\\t\\tif (!item.parsed) {\\n\\t\\t\\t\\titem = mfp.parseEl(mfp.index);\\n\\t\\t\\t}\\n\\n\\t\\t\\tvar type = item.type;\\n\\n\\t\\t\\t_mfpTrigger('BeforeChange', [mfp.currItem ? mfp.currItem.type : '', type]);\\n\\t\\t\\t// BeforeChange event works like so:\\n\\t\\t\\t// _mfpOn('BeforeChange', function(e, prevType, newType) { });\\n\\n\\t\\t\\tmfp.currItem = item;\\n\\n\\t\\t\\tif (!mfp.currTemplate[type]) {\\n\\t\\t\\t\\tvar markup = mfp.st[type] ? mfp.st[type].markup : false;\\n\\n\\t\\t\\t\\t// allows to modify markup\\n\\t\\t\\t\\t_mfpTrigger('FirstMarkupParse', markup);\\n\\n\\t\\t\\t\\tif (markup) {\\n\\t\\t\\t\\t\\tmfp.currTemplate[type] = $(markup);\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t// if there is no markup found we just define that template is parsed\\n\\t\\t\\t\\t\\tmfp.currTemplate[type] = true;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\tif (_prevContentType && _prevContentType !== item.type) {\\n\\t\\t\\t\\tmfp.container.removeClass('mfp-' + _prevContentType + '-holder');\\n\\t\\t\\t}\\n\\n\\t\\t\\tvar newContent = mfp['get' + type.charAt(0).toUpperCase() + type.slice(1)](item, mfp.currTemplate[type]);\\n\\t\\t\\tmfp.appendContent(newContent, type);\\n\\n\\t\\t\\titem.preloaded = true;\\n\\n\\t\\t\\t_mfpTrigger(CHANGE_EVENT, item);\\n\\t\\t\\t_prevContentType = item.type;\\n\\n\\t\\t\\t// Append container back after its content changed\\n\\t\\t\\tmfp.container.prepend(mfp.contentContainer);\\n\\n\\t\\t\\t_mfpTrigger('AfterChange');\\n\\t\\t},\\n\\n\\n\\t\\t/**\\n\\t\\t * Set HTML content of popup\\n\\t\\t */\\n\\t\\tappendContent: function (newContent, type) {\\n\\t\\t\\tmfp.content = newContent;\\n\\n\\t\\t\\tif (newContent) {\\n\\t\\t\\t\\tif (mfp.st.showCloseBtn && mfp.st.closeBtnInside &&\\n\\t\\t\\t\\t\\tmfp.currTemplate[type] === true) {\\n\\t\\t\\t\\t\\t// if there is no markup, we just append close button element inside\\n\\t\\t\\t\\t\\tif (!mfp.content.find('.mfp-close').length) {\\n\\t\\t\\t\\t\\t\\tmfp.content.append(_getCloseBtn());\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\tmfp.content = newContent;\\n\\t\\t\\t\\t}\\n\\t\\t\\t} else {\\n\\t\\t\\t\\tmfp.content = '';\\n\\t\\t\\t}\\n\\n\\t\\t\\t_mfpTrigger(BEFORE_APPEND_EVENT);\\n\\t\\t\\tmfp.container.addClass('mfp-' + type + '-holder');\\n\\n\\t\\t\\tmfp.contentContainer.append(mfp.content);\\n\\t\\t},\\n\\n\\n\\t\\t/**\\n\\t\\t * Creates Magnific Popup data object based on given data\\n\\t\\t * @param {int} index Index of item to parse\\n\\t\\t */\\n\\t\\tparseEl: function (index) {\\n\\t\\t\\tvar item = mfp.items[index],\\n\\t\\t\\t\\ttype;\\n\\n\\t\\t\\tif (item.tagName) {\\n\\t\\t\\t\\titem = { el: $(item) };\\n\\t\\t\\t} else {\\n\\t\\t\\t\\ttype = item.type;\\n\\t\\t\\t\\titem = { data: item, src: item.src };\\n\\t\\t\\t}\\n\\n\\t\\t\\tif (item.el) {\\n\\t\\t\\t\\tvar types = mfp.types;\\n\\n\\t\\t\\t\\t// check for 'mfp-TYPE' class\\n\\t\\t\\t\\tfor (var i = 0; i < types.length; i++) {\\n\\t\\t\\t\\t\\tif (item.el.hasClass('mfp-' + types[i])) {\\n\\t\\t\\t\\t\\t\\ttype = types[i];\\n\\t\\t\\t\\t\\t\\tbreak;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\titem.src = item.el.attr('data-mfp-src');\\n\\t\\t\\t\\tif (!item.src) {\\n\\t\\t\\t\\t\\titem.src = item.el.attr('href');\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\titem.type = type || mfp.st.type || 'inline';\\n\\t\\t\\titem.index = index;\\n\\t\\t\\titem.parsed = true;\\n\\t\\t\\tmfp.items[index] = item;\\n\\t\\t\\t_mfpTrigger('ElementParse', item);\\n\\n\\t\\t\\treturn mfp.items[index];\\n\\t\\t},\\n\\n\\n\\t\\t/**\\n\\t\\t * Initializes single popup or a group of popups\\n\\t\\t */\\n\\t\\taddGroup: function (el, options) {\\n\\t\\t\\tvar eHandler = function (e) {\\n\\t\\t\\t\\te.mfpEl = this;\\n\\t\\t\\t\\tmfp._openClick(e, el, options);\\n\\t\\t\\t};\\n\\n\\t\\t\\tif (!options) {\\n\\t\\t\\t\\toptions = {};\\n\\t\\t\\t}\\n\\n\\t\\t\\tvar eName = 'click.magnificPopup';\\n\\t\\t\\toptions.mainEl = el;\\n\\n\\t\\t\\tif (options.items) {\\n\\t\\t\\t\\toptions.isObj = true;\\n\\t\\t\\t\\tel.off(eName).on(eName, eHandler);\\n\\t\\t\\t} else {\\n\\t\\t\\t\\toptions.isObj = false;\\n\\t\\t\\t\\tif (options.delegate) {\\n\\t\\t\\t\\t\\tel.off(eName).on(eName, options.delegate, eHandler);\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\toptions.items = el;\\n\\t\\t\\t\\t\\tel.off(eName).on(eName, eHandler);\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t},\\n\\t\\t_openClick: function (e, el, options) {\\n\\t\\t\\tvar midClick = options.midClick !== undefined ? options.midClick : $.magnificPopup.defaults.midClick;\\n\\n\\n\\t\\t\\tif (!midClick && (e.which === 2 || e.ctrlKey || e.metaKey || e.altKey || e.shiftKey)) {\\n\\t\\t\\t\\treturn;\\n\\t\\t\\t}\\n\\n\\t\\t\\tvar disableOn = options.disableOn !== undefined ? options.disableOn : $.magnificPopup.defaults.disableOn;\\n\\n\\t\\t\\tif (disableOn) {\\n\\t\\t\\t\\tif ($.isFunction(disableOn)) {\\n\\t\\t\\t\\t\\tif (!disableOn.call(mfp)) {\\n\\t\\t\\t\\t\\t\\treturn true;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t} else { // else it's number\\n\\t\\t\\t\\t\\tif (_window.width() < disableOn) {\\n\\t\\t\\t\\t\\t\\treturn true;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\tif (e.type) {\\n\\t\\t\\t\\te.preventDefault();\\n\\n\\t\\t\\t\\t// This will prevent popup from closing if element is inside and popup is already opened\\n\\t\\t\\t\\tif (mfp.isOpen) {\\n\\t\\t\\t\\t\\te.stopPropagation();\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\toptions.el = $(e.mfpEl);\\n\\t\\t\\tif (options.delegate) {\\n\\t\\t\\t\\toptions.items = el.find(options.delegate);\\n\\t\\t\\t}\\n\\t\\t\\tmfp.open(options);\\n\\t\\t},\\n\\n\\n\\t\\t/**\\n\\t\\t * Updates text on preloader\\n\\t\\t */\\n\\t\\tupdateStatus: function (status, text) {\\n\\n\\t\\t\\tif (mfp.preloader) {\\n\\t\\t\\t\\tif (_prevStatus !== status) {\\n\\t\\t\\t\\t\\tmfp.container.removeClass('mfp-s-' + _prevStatus);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\tif (!text && status === 'loading') {\\n\\t\\t\\t\\t\\ttext = mfp.st.tLoading;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\tvar data = {\\n\\t\\t\\t\\t\\tstatus: status,\\n\\t\\t\\t\\t\\ttext: text\\n\\t\\t\\t\\t};\\n\\t\\t\\t\\t// allows to modify status\\n\\t\\t\\t\\t_mfpTrigger('UpdateStatus', data);\\n\\n\\t\\t\\t\\tstatus = data.status;\\n\\t\\t\\t\\ttext = data.text;\\n\\n\\t\\t\\t\\tmfp.preloader.html(text);\\n\\n\\t\\t\\t\\tmfp.preloader.find('a').on('click', function (e) {\\n\\t\\t\\t\\t\\te.stopImmediatePropagation();\\n\\t\\t\\t\\t});\\n\\n\\t\\t\\t\\tmfp.container.addClass('mfp-s-' + status);\\n\\t\\t\\t\\t_prevStatus = status;\\n\\t\\t\\t}\\n\\t\\t},\\n\\n\\n\\t\\t/*\\n\\t\\t\\t\\\"Private\\\" helpers that aren't private at all\\n\\t\\t */\\n\\t\\t// Check to close popup or not\\n\\t\\t// \\\"target\\\" is an element that was clicked\\n\\t\\t_checkIfClose: function (target) {\\n\\n\\t\\t\\tif ($(target).hasClass(PREVENT_CLOSE_CLASS)) {\\n\\t\\t\\t\\treturn;\\n\\t\\t\\t}\\n\\n\\t\\t\\tvar closeOnContent = mfp.st.closeOnContentClick;\\n\\t\\t\\tvar closeOnBg = mfp.st.closeOnBgClick;\\n\\n\\t\\t\\tif (closeOnContent && closeOnBg) {\\n\\t\\t\\t\\treturn true;\\n\\t\\t\\t} else {\\n\\n\\t\\t\\t\\t// We close the popup if click is on close button or on preloader. Or if there is no content.\\n\\t\\t\\t\\tif (!mfp.content || $(target).hasClass('mfp-close') || (mfp.preloader && target === mfp.preloader[0])) {\\n\\t\\t\\t\\t\\treturn true;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// if click is outside the content\\n\\t\\t\\t\\tif ((target !== mfp.content[0] && !$.contains(mfp.content[0], target))) {\\n\\t\\t\\t\\t\\tif (closeOnBg) {\\n\\t\\t\\t\\t\\t\\t// last check, if the clicked element is in DOM, (in case it's removed onclick)\\n\\t\\t\\t\\t\\t\\tif ($.contains(document, target)) {\\n\\t\\t\\t\\t\\t\\t\\treturn true;\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t} else if (closeOnContent) {\\n\\t\\t\\t\\t\\treturn true;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t}\\n\\t\\t\\treturn false;\\n\\t\\t},\\n\\t\\t_addClassToMFP: function (cName) {\\n\\t\\t\\tmfp.bgOverlay.addClass(cName);\\n\\t\\t\\tmfp.wrap.addClass(cName);\\n\\t\\t},\\n\\t\\t_removeClassFromMFP: function (cName) {\\n\\t\\t\\tthis.bgOverlay.removeClass(cName);\\n\\t\\t\\tmfp.wrap.removeClass(cName);\\n\\t\\t},\\n\\t\\t_hasScrollBar: function (winHeight) {\\n\\t\\t\\treturn ((mfp.isIE7 ? _document.height() : document.body.scrollHeight) > (winHeight || _window.height()));\\n\\t\\t},\\n\\t\\t_setFocus: function () {\\n\\t\\t\\t(mfp.st.focus ? mfp.content.find(mfp.st.focus).eq(0) : mfp.wrap).focus();\\n\\t\\t},\\n\\t\\t_onFocusIn: function (e) {\\n\\t\\t\\tif (e.target !== mfp.wrap[0] && !$.contains(mfp.wrap[0], e.target)) {\\n\\t\\t\\t\\tmfp._setFocus();\\n\\t\\t\\t\\treturn false;\\n\\t\\t\\t}\\n\\t\\t},\\n\\t\\t_parseMarkup: function (template, values, item) {\\n\\t\\t\\tvar arr;\\n\\t\\t\\tif (item.data) {\\n\\t\\t\\t\\tvalues = $.extend(item.data, values);\\n\\t\\t\\t}\\n\\t\\t\\t_mfpTrigger(MARKUP_PARSE_EVENT, [template, values, item]);\\n\\n\\t\\t\\t$.each(values, function (key, value) {\\n\\t\\t\\t\\tif (value === undefined || value === false) {\\n\\t\\t\\t\\t\\treturn true;\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\tarr = key.split('_');\\n\\t\\t\\t\\tif (arr.length > 1) {\\n\\t\\t\\t\\t\\tvar el = template.find(EVENT_NS + '-' + arr[0]);\\n\\n\\t\\t\\t\\t\\tif (el.length > 0) {\\n\\t\\t\\t\\t\\t\\tvar attr = arr[1];\\n\\t\\t\\t\\t\\t\\tif (attr === 'replaceWith') {\\n\\t\\t\\t\\t\\t\\t\\tif (el[0] !== value[0]) {\\n\\t\\t\\t\\t\\t\\t\\t\\tel.replaceWith(value);\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t} else if (attr === 'img') {\\n\\t\\t\\t\\t\\t\\t\\tif (el.is('img')) {\\n\\t\\t\\t\\t\\t\\t\\t\\tel.attr('src', value);\\n\\t\\t\\t\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t\\t\\t\\tel.replaceWith($('').attr('src', value).attr('class', el.attr('class')));\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t\\t\\tel.attr(arr[1], value);\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\ttemplate.find(EVENT_NS + '-' + key).html(value);\\n\\t\\t\\t\\t}\\n\\t\\t\\t});\\n\\t\\t},\\n\\n\\t\\t_getScrollbarSize: function () {\\n\\t\\t\\t// thx David\\n\\t\\t\\tif (mfp.scrollbarSize === undefined) {\\n\\t\\t\\t\\tvar scrollDiv = document.createElement(\\\"div\\\");\\n\\t\\t\\t\\tscrollDiv.style.cssText = 'width: 99px; height: 99px; overflow: scroll; position: absolute; top: -9999px;';\\n\\t\\t\\t\\tdocument.body.appendChild(scrollDiv);\\n\\t\\t\\t\\tmfp.scrollbarSize = scrollDiv.offsetWidth - scrollDiv.clientWidth;\\n\\t\\t\\t\\tdocument.body.removeChild(scrollDiv);\\n\\t\\t\\t}\\n\\t\\t\\treturn mfp.scrollbarSize;\\n\\t\\t}\\n\\n\\t}; /* MagnificPopup core prototype end */\\n\\n\\n\\n\\n\\t/**\\n\\t * Public static functions\\n\\t */\\n\\t$.magnificPopup = {\\n\\t\\tinstance: null,\\n\\t\\tproto: MagnificPopup.prototype,\\n\\t\\tmodules: [],\\n\\n\\t\\topen: function (options, index) {\\n\\t\\t\\t_checkInstance();\\n\\n\\t\\t\\tif (!options) {\\n\\t\\t\\t\\toptions = {};\\n\\t\\t\\t} else {\\n\\t\\t\\t\\toptions = $.extend(true, {}, options);\\n\\t\\t\\t}\\n\\n\\t\\t\\toptions.isObj = true;\\n\\t\\t\\toptions.index = index || 0;\\n\\t\\t\\treturn this.instance.open(options);\\n\\t\\t},\\n\\n\\t\\tclose: function () {\\n\\t\\t\\treturn $.magnificPopup.instance && $.magnificPopup.instance.close();\\n\\t\\t},\\n\\n\\t\\tregisterModule: function (name, module) {\\n\\t\\t\\tif (module.options) {\\n\\t\\t\\t\\t$.magnificPopup.defaults[name] = module.options;\\n\\t\\t\\t}\\n\\t\\t\\t$.extend(this.proto, module.proto);\\n\\t\\t\\tthis.modules.push(name);\\n\\t\\t},\\n\\n\\t\\tdefaults: {\\n\\n\\t\\t\\t// Info about options is in docs:\\n\\t\\t\\t// http://dimsemenov.com/plugins/magnific-popup/documentation.html#options\\n\\n\\t\\t\\tdisableOn: 0,\\n\\n\\t\\t\\tkey: null,\\n\\n\\t\\t\\tmidClick: false,\\n\\n\\t\\t\\tmainClass: '',\\n\\n\\t\\t\\tpreloader: true,\\n\\n\\t\\t\\tfocus: '', // CSS selector of input to focus after popup is opened\\n\\n\\t\\t\\tcloseOnContentClick: false,\\n\\n\\t\\t\\tcloseOnBgClick: true,\\n\\n\\t\\t\\tcloseBtnInside: true,\\n\\n\\t\\t\\tshowCloseBtn: true,\\n\\n\\t\\t\\tenableEscapeKey: true,\\n\\n\\t\\t\\tmodal: false,\\n\\n\\t\\t\\talignTop: false,\\n\\n\\t\\t\\tremovalDelay: 0,\\n\\n\\t\\t\\tprependTo: null,\\n\\n\\t\\t\\tfixedContentPos: 'auto',\\n\\n\\t\\t\\tfixedBgPos: 'auto',\\n\\n\\t\\t\\toverflowY: 'auto',\\n\\n\\t\\t\\tcloseMarkup: '',\\n\\n\\t\\t\\ttClose: 'Close (Esc)',\\n\\n\\t\\t\\ttLoading: 'Loading...',\\n\\n\\t\\t\\tautoFocusLast: true\\n\\n\\t\\t}\\n\\t};\\n\\n\\n\\n\\t$.fn.magnificPopup = function (options) {\\n\\t\\t_checkInstance();\\n\\n\\t\\tvar jqEl = $(this);\\n\\n\\t\\t// We call some API method of first param is a string\\n\\t\\tif (typeof options === \\\"string\\\") {\\n\\n\\t\\t\\tif (options === 'open') {\\n\\t\\t\\t\\tvar items,\\n\\t\\t\\t\\t\\titemOpts = _isJQ ? jqEl.data('magnificPopup') : jqEl[0].magnificPopup,\\n\\t\\t\\t\\t\\tindex = parseInt(arguments[1], 10) || 0;\\n\\n\\t\\t\\t\\tif (itemOpts.items) {\\n\\t\\t\\t\\t\\titems = itemOpts.items[index];\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\titems = jqEl;\\n\\t\\t\\t\\t\\tif (itemOpts.delegate) {\\n\\t\\t\\t\\t\\t\\titems = items.find(itemOpts.delegate);\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\titems = items.eq(index);\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\tmfp._openClick({ mfpEl: items }, jqEl, itemOpts);\\n\\t\\t\\t} else {\\n\\t\\t\\t\\tif (mfp.isOpen)\\n\\t\\t\\t\\t\\tmfp[options].apply(mfp, Array.prototype.slice.call(arguments, 1));\\n\\t\\t\\t}\\n\\n\\t\\t} else {\\n\\t\\t\\t// clone options obj\\n\\t\\t\\toptions = $.extend(true, {}, options);\\n\\n\\t\\t\\t/*\\n\\t\\t\\t * As Zepto doesn't support .data() method for objects\\n\\t\\t\\t * and it works only in normal browsers\\n\\t\\t\\t * we assign \\\"options\\\" object directly to the DOM element. FTW!\\n\\t\\t\\t */\\n\\t\\t\\tif (_isJQ) {\\n\\t\\t\\t\\tjqEl.data('magnificPopup', options);\\n\\t\\t\\t} else {\\n\\t\\t\\t\\tjqEl[0].magnificPopup = options;\\n\\t\\t\\t}\\n\\n\\t\\t\\tmfp.addGroup(jqEl, options);\\n\\n\\t\\t}\\n\\t\\treturn jqEl;\\n\\t};\\n\\n\\t/*>>core*/\\n\\n\\t/*>>inline*/\\n\\n\\tvar INLINE_NS = 'inline',\\n\\t\\t_hiddenClass,\\n\\t\\t_inlinePlaceholder,\\n\\t\\t_lastInlineElement,\\n\\t\\t_putInlineElementsBack = function () {\\n\\t\\t\\tif (_lastInlineElement) {\\n\\t\\t\\t\\t_inlinePlaceholder.after(_lastInlineElement.addClass(_hiddenClass)).detach();\\n\\t\\t\\t\\t_lastInlineElement = null;\\n\\t\\t\\t}\\n\\t\\t};\\n\\n\\t$.magnificPopup.registerModule(INLINE_NS, {\\n\\t\\toptions: {\\n\\t\\t\\thiddenClass: 'hide', // will be appended with `mfp-` prefix\\n\\t\\t\\tmarkup: '',\\n\\t\\t\\ttNotFound: 'Content not found'\\n\\t\\t},\\n\\t\\tproto: {\\n\\n\\t\\t\\tinitInline: function () {\\n\\t\\t\\t\\tmfp.types.push(INLINE_NS);\\n\\n\\t\\t\\t\\t_mfpOn(CLOSE_EVENT + '.' + INLINE_NS, function () {\\n\\t\\t\\t\\t\\t_putInlineElementsBack();\\n\\t\\t\\t\\t});\\n\\t\\t\\t},\\n\\n\\t\\t\\tgetInline: function (item, template) {\\n\\n\\t\\t\\t\\t_putInlineElementsBack();\\n\\n\\t\\t\\t\\tif (item.src) {\\n\\t\\t\\t\\t\\tvar inlineSt = mfp.st.inline,\\n\\t\\t\\t\\t\\t\\tel = $(item.src);\\n\\n\\t\\t\\t\\t\\tif (el.length) {\\n\\n\\t\\t\\t\\t\\t\\t// If target element has parent - we replace it with placeholder and put it back after popup is closed\\n\\t\\t\\t\\t\\t\\tvar parent = el[0].parentNode;\\n\\t\\t\\t\\t\\t\\tif (parent && parent.tagName) {\\n\\t\\t\\t\\t\\t\\t\\tif (!_inlinePlaceholder) {\\n\\t\\t\\t\\t\\t\\t\\t\\t_hiddenClass = inlineSt.hiddenClass;\\n\\t\\t\\t\\t\\t\\t\\t\\t_inlinePlaceholder = _getEl(_hiddenClass);\\n\\t\\t\\t\\t\\t\\t\\t\\t_hiddenClass = 'mfp-' + _hiddenClass;\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t\\t// replace target inline element with placeholder\\n\\t\\t\\t\\t\\t\\t\\t_lastInlineElement = el.after(_inlinePlaceholder).detach().removeClass(_hiddenClass);\\n\\t\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\t\\tmfp.updateStatus('ready');\\n\\t\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t\\tmfp.updateStatus('error', inlineSt.tNotFound);\\n\\t\\t\\t\\t\\t\\tel = $('