| Current Path : /home/giteleslfp/www/media/com_akeeba/cachedMedia/ |
| Current File : /home/giteleslfp/www/media/com_akeeba/cachedMedia/4a76046fa1d74769a4772ddfcf4714d5.js |
// ============================================================================
// /media/com_akeeba/js/UserInterfaceCommon.min.js
// ============================================================================
/*
Copyright (c)2006-2020 Nicholas K. Dionysopoulos / Akeeba Ltd
@license GNU General Public License version 3, or later
Math.uuid.js (v1.4)
http://www.broofa.com
mailto:robert@broofa.com
Copyright (c) 2009 Robert Kieffer
Dual licensed under the MIT and GPL licenses.
Usage: Math.uuid()
*/
if("undefined"==typeof akeeba)var akeeba={};Math.uuid=function(){var a="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz".split("");return function(b,c){var e=[];c=c||a.length;if(b)for(var d=0;d<b;d++)e[d]=a[0|Math.random()*c];else for(e[8]=e[13]=e[18]=e[23]="-",e[14]="4",d=0;36>d;d++)e[d]||(b=0|16*Math.random(),e[d]=a[19==d?b&3|8:b]);return e.join("")}}();
function basename(a,b){a=a.replace(/^.*[\/\\]/g,"");"string"==typeof b&&a.substr(a.length-b.length)==b&&(a=a.substr(0,a.length-b.length));return a}function empty(a){var b;if(""===a||0===a||"0"===a||null===a||!1===a||"undefined"===typeof a)return!0;if("object"==typeof a){for(b in a)return!1;return!0}return!1}function array_shift(a){if(0===a.length)return null;if(0<a.length)return a.shift()}
function trim(a,b){var c;a+="";b=b?(b+"").replace(/([\[\]\(\)\.\?\/\*\{\}\+\$\^:])/g,"$1"):" \n\r\t\f\x0B\u00a0\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u200b\u2028\u2029\u3000";var e=a.length;for(c=0;c<e;c++)if(-1===b.indexOf(a.charAt(c))){a=a.substring(c);break}e=a.length;for(c=e-1;0<=c;c--)if(-1===b.indexOf(a.charAt(c))){a=a.substring(0,c+1);break}return-1===b.indexOf(a.charAt(0))?a:""}
Object.keys||(Object.keys=function(){var a=Object.prototype.hasOwnProperty,b=!{toString:null}.propertyIsEnumerable("toString"),c="toString toLocaleString valueOf hasOwnProperty isPrototypeOf propertyIsEnumerable constructor".split(" "),e=c.length;return function(d){if("object"!==typeof d&&("function"!==typeof d||null===d))throw new TypeError("Object.keys called on non-object");var g=[],f;for(f in d)a.call(d,f)&&g.push(f);if(b)for(f=0;f<e;f++)a.call(d,c[f])&&g.push(c[f]);return g}}());
function escapeHTML(a){return a.split("&").join("&").split("<").join("<").split(">").join(">")}; //# sourceMappingURL=UserInterfaceCommon.min.map
// ============================================================================
// /media/com_akeeba/js/Modal.min.js
// ============================================================================
/*
Copyright (c)2006-2020 Nicholas K. Dionysopoulos / Akeeba Ltd
@license GNU General Public License version 3, or later
jsModal - A pure JavaScript modal dialog engine v1.0d
http://jsmodal.com/
Author: Henry Rune Tang Kai <henry@henrys.se>
(c) Copyright 2013 Henry Tang Kai.
License: http://www.opensource.org/licenses/mit-license.php
Date: 2013-7-11
Modified by Akeeba Ltd:
- [Oct 2016] Prefix "akeeba-modal-" instead of generic "modal-" to avoid conflicts with 3PD software e.g. Bootstrap.
- [Oct 2016] Remove support for AJAX content. We use our own AJAX handlers which work around 3PD plugins corrupting content.
? [Oct 2016] Added method show() which just calls open() for backwards compatibility reasons.
? [Oct 2016] Added parameter "inherit" where you can give a query selector for an element whose content will be inherited by the modal.
? [Oct 2016] open() returns the Modal object so that we can interact with it through external code.
? [Nov 2016] Added parameter "iframe" where you can give a URL to load inside an IFRAME.
*/
if("undefined"==typeof akeeba)var akeeba={};
"undefined"==typeof akeeba.Modal&&(akeeba.Modal=function(){var d={},b={},e=document.createElement("div"),c=document.createElement("div"),h=document.createElement("div"),f=document.createElement("div"),l=document.createElement("div"),k=null,m,n;d.show=function(a){try{console.log("Using akeeba.Modal.show() is deprecated. Use .open() instead.")}catch(g){}return d.open(a)};d.open=function(a){b.width=a.width||"auto";b.height=a.height||"auto";b.lock=a.lock||!1;b.hideClose=a.hideClose||!1;b.draggable=a.draggable||
!1;b.closeAfter=a.closeAfter||0;b.closeCallback=a.closeCallback||!1;b.openCallback=a.openCallback||!1;b.hideOverlay=a.hideOverlay||!1;m=function(){d.center({})};f.innerHTML="";var g=null;if(a.content)f.innerHTML=a.content;else if(a.inherit){if(g=a.inherit,"string"==typeof a.inherit&&(g=window.document.querySelector(a.inherit)),null!=g&&g.innerHTML)for(k=g;0<k.childNodes.length;)f.appendChild(k.childNodes[0])}else a.iframe&&(g=window.document.createElement("iframe"),g.setAttribute("src",a.iframe),
g.setAttribute("width",a.width),g.setAttribute("height",a.height),g.setAttribute("frameborder",0),g.setAttribute("marginheight",0),g.setAttribute("marginwidth",0),f.appendChild(g));c.style.width=b.width;c.style.height=b.height;d.center({});if(b.lock||b.hideClose)l.style.visibility="hidden";b.hideOverlay||(e.style.visibility="visible");c.style.visibility="visible";document.onkeypress=function(a){27===a.keyCode&&!0!==b.lock&&d.close()};l.onclick=function(){if(b.hideClose)return!1;d.close()};e.onclick=
function(){if(b.lock)return!1;d.close()};window.addEventListener?window.addEventListener("resize",m,!1):window.attachEvent&&window.attachEvent("onresize",m);b.draggable?(h.style.cursor="move",h.onmousedown=function(a){d.drag(a);return!1}):h.onmousedown=function(){return!1};0<b.closeAfter&&(n=window.setTimeout(function(){d.close()},1E3*b.closeAfter));b.openCallback&&b.openCallback();return this};d.drag=function(a){var b=void 0!==window.event?window.event.clientX:a.clientX,d=void 0!==window.event?window.event.clientY:
a.clientY,e=b-c.offsetLeft,f=d-c.offsetTop;document.onmousemove=function(a){b=void 0!==window.event?window.event.clientX:a.clientX;d=void 0!==window.event?window.event.clientY:a.clientY;c.style.left=0<b-e?b-e+"px":0;c.style.top=0<d-f?d-f+"px":0;document.onmouseup=function(){window.document.onmousemove=null}}};d.close=function(){if(!function(a){var b;if(""===a||0===a||"0"===a||null===a||!1===a||"undefined"===typeof a)return!0;if("object"==typeof a){for(b in a)return!1;return!0}return!1}(k)){for(;0<
f.childNodes.length;)k.appendChild(f.childNodes[0]);k=null}f.innerHTML="";e.setAttribute("style","");e.style.cssText="";e.style.visibility="hidden";c.setAttribute("style","");c.style.cssText="";c.style.visibility="hidden";h.style.cursor="default";l.setAttribute("style","");l.style.cssText="";n&&window.clearTimeout(n);b.closeCallback&&b.closeCallback();window.removeEventListener?window.removeEventListener("resize",m,!1):window.detachEvent&&window.detachEvent("onresize",m)};d.center=function(a){var b=
Math.max(document.body.scrollHeight,document.documentElement.scrollHeight),d=Math.max(c.clientWidth,c.offsetWidth),f=Math.max(c.clientHeight,c.offsetHeight),h=0,l=0,k=0,m=0;"number"===typeof window.innerWidth?(h=window.innerWidth,l=window.innerHeight):document.documentElement&&document.documentElement.clientWidth&&(h=document.documentElement.clientWidth,l=document.documentElement.clientHeight);"number"===typeof window.pageYOffset?(m=window.pageYOffset,k=window.pageXOffset):document.body&&document.body.scrollLeft?
(m=document.body.scrollTop,k=document.body.scrollLeft):document.documentElement&&document.documentElement.scrollLeft&&(m=document.documentElement.scrollTop,k=document.documentElement.scrollLeft);a.horizontalOnly||(c.style.top=m+l/2-f/2+"px");c.style.left=k+h/2-d/2+"px";e.style.height=b+"px";e.style.width="100%"};e.setAttribute("id","akeeba-modal-overlay");c.setAttribute("id","akeeba-modal-container");h.setAttribute("id","akeeba-modal-header");f.setAttribute("id","akeeba-modal-content");l.setAttribute("id",
"akeeba-modal-close");h.appendChild(l);c.appendChild(h);c.appendChild(f);e.style.visibility="hidden";c.style.visibility="hidden";window.addEventListener?window.addEventListener("load",function(){document.body.appendChild(e);document.body.appendChild(c)},!1):window.attachEvent&&window.attachEvent("onload",function(){document.body.appendChild(e);document.body.appendChild(c)});return d}()); //# sourceMappingURL=Modal.min.map
// ============================================================================
// /media/com_akeeba/js/Ajax.min.js
// ============================================================================
/*
Copyright (c)2006-2020 Nicholas K. Dionysopoulos / Akeeba Ltd
@license GNU General Public License version 3, or later
*/
if("undefined"==typeof akeeba)var akeeba={};"undefined"==typeof akeeba.Ajax&&(akeeba.Ajax={xhrSuccessStatus:{0:200,1223:204},requestArray:[],processingQueue:!1});
akeeba.Ajax.ajax=function(b,a){"undefined"==typeof a&&(a=b,b=a.url);var c="undefined"==typeof a.type?"POST":a.type;c=c.toUpperCase();var e="undefined"==typeof a.data?{}:a.data,g=null,h="undefined"==typeof a.success?null:a.success,f="undefined"==typeof a.error?null:a.error;if("undefined"==typeof a.cache||!a.url){var k=(new Date).getTime()/1E3,l=parseInt(k,10);e._cacheBustingJunk=Math.round(1E3*(k-l))/1E3}"POST"==c||"PUT"==c?g=this.interpolateParameters(e):(b+=-1==b.indexOf("?")?"?":"&",b+=this.interpolateParameters(e));
var d=new XMLHttpRequest;d.open(c,b);"POST"!=c&&"PUT"!=c||d.setRequestHeader("Content-Type","application/x-www-form-urlencoded");d.onload=function(a){a=akeeba.Ajax.xhrSuccessStatus[d.status]||d.status;var b=d.statusText,c="text"!==(d.responseType||"text")||"string"!==typeof d.responseText?d.response:d.responseText;d.getAllResponseHeaders();200===a?null!=h&&akeeba.Ajax.triggerCallbacks(h,c,b,d):f&&akeeba.Ajax.triggerCallbacks(f,d,"error",null)};d.onerror=function(a){f&&akeeba.Ajax.triggerCallbacks(f,
d,"error",null)};window.attachEvent&&!window.addEventListener&&(d.onreadystatechange=function(){if(4===this.readyState){var a=akeeba.Ajax.xhrSuccessStatus[this.status]||this.status;if(200<=a&&400>a)d.onload();else d.onerror()}});d.ontimeout=function(){f&&akeeba.Ajax.triggerCallbacks(f,d,"timeout",null)};d.onabort=function(){f&&akeeba.Ajax.triggerCallbacks(f,d,"abort",null)};b="undefined"==typeof a.timeout?6E5:a.timeout;0<b&&(d.timeout=b);"undefined"!=typeof a.beforeSend&&!1===a.beforeSend(d,a)||d.send(g)};
akeeba.Ajax.enqueue=function(b,a){"undefined"===typeof a&&(a=b,b=a.url);a.url=b;akeeba.Ajax.requestArray.push(a);akeeba.Ajax.processQueue()};akeeba.Ajax.interpolateParameters=function(b,a){a=a||"";var c="",e;for(e in b)b.hasOwnProperty(e)&&(0<c.length&&(c+="&"),c="object"!==typeof b[e]?""===a?c+(encodeURIComponent(e)+"="+encodeURIComponent(b[e])):c+(encodeURIComponent(a)+"["+encodeURIComponent(e)+"]="+encodeURIComponent(b[e])):c+akeeba.Ajax.interpolateParameters(b[e],e));return c};
akeeba.Ajax.triggerCallbacks=function(){var b=Array.prototype.slice.call(arguments),a=b.shift();if("function"==typeof a)return a.apply(null,b);if(a instanceof Array)for(var c=0;c<a.length;c++)if(!1===a[c].apply(null,b))return!1;return null};akeeba.Ajax.processQueueHelper=function(){akeeba.Ajax.processingQueue=!1;setTimeout(akeeba.Ajax.processQueue,50)};
akeeba.Ajax.processQueue=function(){if(!akeeba.Ajax.requestArray.length)akeeba.Ajax.processingQueue=!1;else if(!akeeba.Ajax.processingQueue){var b=akeeba.Ajax.requestArray.shift(),a=b.url,c="undefined"==typeof b.success?[]:b.success,e="undefined"==typeof b.error?[]:b.error;"object"==typeof c&&c instanceof Array||(c=[c]);"object"==typeof e&&e instanceof Array||(e=[e]);c.unshift(akeeba.Ajax.processQueueHelper);e.unshift(akeeba.Ajax.processQueueHelper);b.success=c;b.error=e;akeeba.Ajax.processingQueue=
!0;akeeba.Ajax.ajax(a,b)}}; //# sourceMappingURL=Ajax.min.map
// ============================================================================
// /media/com_akeeba/js/System.min.js
// ============================================================================
/*
Copyright (c)2006-2020 Nicholas K. Dionysopoulos / Akeeba Ltd
@license GNU General Public License version 3, or later
*/
if("undefined"===typeof akeeba)var akeeba={};"undefined"===typeof akeeba.System&&(akeeba.System={},akeeba.System.documentReady=function(a,b){},akeeba.System.notification={hasDesktopNotification:!1,iconURL:""},akeeba.System.params={AjaxURL:"",errorCallback:akeeba.System.modalErrorHandler,password:"",errorDialogId:"errorDialog",errorDialogMessageId:"errorDialogPre"},akeeba.System.modalDialog=null,akeeba.System.optionsStorage=null);
akeeba.System.array_merge=function(){var a=Array.prototype.slice.call(arguments),b={},c,d;var e=!0;for(d=0;d<a.length;d++)if(!(a[d]instanceof Array)){e=!1;break}if(e){e=[];for(d=0;d<a.length;d++)e=e.concat(a[d]);return e}var f;for(f=d=0;d<a.length;d++)if(a[d]instanceof Array)for(e=0;e<a[d].length;e++)b[f++]=a[d][e];else for(c in a[d])a[d].hasOwnProperty(c)&&(parseInt(c,10)+""===c?b[f++]=a[d][c]:b[c]=a[d][c]);return b};
akeeba.System.array_diff=function(a){var b={},c=arguments.length,d="",e,f="";a:for(d in a)for(e=1;e<c;e++){var g=arguments[e];for(f in g)if(g[f]===a[d])continue a;b[d]=a[d]}return b};
akeeba.System.getOptions=function(a,b){"undefined"==typeof b&&(b=null);akeeba.System.optionsStorage||(akeeba.System.loadJoomlaOptions(),akeeba.System.loadOptions());return void 0!==akeeba.System.optionsStorage[a]?akeeba.System.optionsStorage[a]:"undefined"!==typeof Joomla&&"undefined"!==typeof Joomla.getOptions?Joomla.getOptions(a,b):b};
akeeba.System.loadJoomlaOptions=function(){var a=document.querySelectorAll(".joomla-script-options");akeeba.System.iterateNodes(a,function(a){if(!akeeba.System.hasClass(a,"akeebaImported")){var b;str=a.text||a.textContent;(b=JSON.parse(str))&&akeeba.System.loadOptions(b);akeeba.System.addClass(a,"akeebaImported")}})};
akeeba.System.loadOptions=function(a){if(!a){for(var b=document.querySelectorAll(".akeeba-script-options.new"),c,d,e=0,f=0,g=b.length;f<g;f++){d=b[f];c=d.text||d.textContent;if(c=JSON.parse(c))akeeba.System.loadOptions(c),e++;akeeba.System.removeClass(d,"new");akeeba.System.addClass(d,"loaded")}if(e)return}if(!akeeba.System.optionsStorage)akeeba.System.optionsStorage=a||{};else if(a)for(var h in a)a.hasOwnProperty(h)&&(akeeba.System.optionsStorage[h]=a[h])};
akeeba.System.defaultErrorHandler=function(a){null!=a&&"undefined"!=typeof a&&alert("An error has occurred\n"+a)};
akeeba.System.modalErrorHandler=function(a){var b=akeeba.System.getOptions("akeeba.System.params.errorDialogId",akeeba.System.params.errorDialogId),c=akeeba.System.getOptions("akeeba.System.params.errorDialogMessageId",akeeba.System.params.errorDialogMessageId);b=document.getElementById(b);var d="error";null!=b&&(document.getElementById(c).innerHTML=a,d=b.innerHTML);akeeba.Modal.open({content:d,width:"80%"})};
akeeba.System.doAjax=function(a,b,c,d,e){null==d&&(d=!0);var f=(new Date).getTime()/1E3,g=parseInt(String(f),10);a._cacheBustingJunk=Math.round(1E3*(f-g))/1E3;null==e&&(e=6E5);f=akeeba.System.getOptions("akeeba.System.params.AjaxURL",akeeba.System.params.AjaxURL);a.hasOwnProperty("ajaxURL")&&(f=a.ajaxURL,delete a.url);null==c&&(c=akeeba.System.getOptions("akeeba.System.params.errorCallback",akeeba.System.params.errorCallback));null==c&&(c=akeeba.System.defaultErrorHandler);a={type:"POST",url:f,cache:!1,
data:a,timeout:e,success:function(a){var d=a.indexOf("###");if(-1===d)a=akeeba.System.sanitizeErrorMessage(a),c("Invalid AJAX data: "+a);else{var e=a;0!==d&&(e=a.substr(d));e=e.substr(3);d=e.lastIndexOf("###");e=e.substr(0,d);try{var f=JSON.parse(e)}catch(k){e=akeeba.System.sanitizeErrorMessage(e);a=k.message+"\n<br/>\n<pre>\n"+e+"\n</pre>";c(a);return}b(f)}},error:function(a,b,d){d=a.responseText?a.responseText:"";var e="<strong>AJAX Loading Error</strong><br/>HTTP Status: "+a.status+" ("+a.statusText+
")<br/>";e=e+"Internal status: "+b+"<br/>XHR ReadyState: "+a.readyState+"<br/>";e=e+"Raw server response:<br/>"+akeeba.System.sanitizeErrorMessage(d);c(e)}};d?akeeba.Ajax.enqueue(a):akeeba.Ajax.ajax(a)};akeeba.System.sanitizeErrorMessage=function(a){-1<a.indexOf("<script")&&(a="(HTML containing script tags)");return a};
akeeba.System.notification.askPermission=function(){akeeba.System.getOptions("akeeba.System.notification.hasDesktopNotification",akeeba.System.notification.hasDesktopNotification)&&void 0!==window.Notification&&"default"===window.Notification.permission&&window.Notification.requestPermission()};
akeeba.System.notification.notify=function(a,b,c){void 0!==window.Notification&&"granted"===window.Notification.permission&&(void 0===c&&(c=5E3),void 0===b&&(b=""),a=new window.Notification(a,{body:b,icon:akeeba.System.getOptions("akeeba.System.notification.iconURL",akeeba.System.notification.iconURL)}),0<c&&setTimeout(function(a){return function(){a.close()}}(a),c))};
akeeba.System.data=function(){var a=0,b={};return{set:function(c,d,e){if(c.dataset)c.dataset[d]=e,null==e&&delete c.dataset[d];else{if(void 0===c.myCustomDataTag){var f=a++;c.myCustomDataTag=f}"undefined"==typeof b[f]&&(b[f]={});b[f][d]=e;var g="data-"+d.split(/(?=[A-Z])/).join("-").toLowerCase();c.setAttribute&&c.setAttribute(g,e);if(null==e)try{delete b[f][d],c.removeAttribute(g)}catch(h){b[f][d]=null}}},get:function(a,d,e){if(a.dataset)return"undefined"==typeof a.dataset[d]&&(a.dataset[d]=e),a.dataset[d];
"undefined"==typeof e&&(e=null);"undefined"==typeof b[a.myCustomDataTag]&&(b[a.myCustomDataTag]={});var c="data-"+d.split(/(?=[A-Z])/).join("-").toLowerCase();"undefined"!==typeof a[c]&&(b[a.myCustomDataTag][d]=a[c]);"undefined"==typeof b[a.myCustomDataTag][d]&&this.set(a,d,e);return b[a.myCustomDataTag][d]}}}();
akeeba.System.addEventListener=function(a,b,c){function d(a){var b=c.apply(this,arguments);!1===b&&(a.stopPropagation()&&a.stopPropagation(),a.preventDefault?a.preventDefault():a.returnValue=!1);return b}"string"===typeof a&&(a=document.getElementById(a));null!=a&&"object"==typeof a&&a instanceof Element&&(a.addEventListener?a.addEventListener(b,d,!1):a.attachEvent("on"+b,function(){var b=c.call(a,window.event);!1===b&&(window.event.returnValue=!1,window.event.cancelBubble=!0);return b}))};
akeeba.System.removeEventListener=function(a,b,c){"string"===typeof a&&(a=document.getElementById(a));null!=a&&"object"==typeof a&&a instanceof Element&&(a.removeEventListener?a.removeEventListener(b,c):a.detachEvent("on"+b,c))};
akeeba.System.triggerEvent=function(a,b){if("undefined"!=typeof a&&null!==a&&("string"===typeof a&&(a=document.getElementById(a)),"object"==typeof a&&a instanceof Element))if("function"===typeof window.jQuery)window.jQuery(a).trigger(b);else if(document.fireEvent&&"undefined"==typeof window.Event)a.fireEvent("on"+b);else{var c=document.createEvent("Event");c.initEvent(b,!0,!0);a.dispatchEvent(c)}};
(function(a,b){function c(){if(!f){f=!0;for(var a=0;a<e.length;a++)e[a].fn.call(window,e[a].ctx);e=[]}}function d(){"complete"===document.readyState&&c()}b=b||akeeba.System;var e=[],f=!1,g=!1;b[a||"documentReady"]=function(a,b){f?setTimeout(function(){a(b)},1):(e.push({fn:a,ctx:b}),"complete"===document.readyState||!document.attachEvent&&"interactive"===document.readyState?setTimeout(c,1):g||(g=!0,document.addEventListener?(document.addEventListener("DOMContentLoaded",c,!1),window.addEventListener("load",
c,!1)):(document.attachEvent("onreadystatechange",d),window.attachEvent("onload",c))))}})("documentReady",akeeba.System);akeeba.System.addClass=function(a,b){if(a&&a.className){var c=a.className.split(" ");"string"==typeof b&&(b=b.split(" "));c=akeeba.System.array_merge(c,b);a.className="";for(property in c)c.hasOwnProperty(property)&&(a.className+=c[property]+" ");a.className.trim&&(a.className=a.className.trim())}};
akeeba.System.removeClass=function(a,b){if(a&&a.className){var c=a.className.split(" ");"string"==typeof b&&(b=b.split(" "));c=akeeba.System.array_diff(c,b);a.className="";for(property in c)c.hasOwnProperty(property)&&(a.className+=c[property]+" ");a.className.trim&&(a.className=a.className.trim())}};akeeba.System.hasClass=function(a,b){if(a&&a.className){a=a.className.split(" ");for(i=0;i<a.length;i++)if(a[i]===b)return!0;return!1}};
akeeba.System.toggleClass=function(a,b){akeeba.System.hasClass(a,b)?akeeba.System.removeClass(a,b):akeeba.System.addClass(a,b)};akeeba.System.tableOrdering=function(a,b,c,d){"undefined"===typeof d&&(d=document.getElementById("adminForm"));d.filter_order.value=a;d.filter_order_Dir.value=b;akeeba.System.submitForm(c,d)};
akeeba.System.submitForm=function(a,b,c){b||(b=document.getElementById("adminForm"));a&&(b.task.value=a);b.noValidate=!c;c?b.hasAttribute("novalidate")&&b.removeAttribute("novalidate"):b.setAttribute("novalidate","");a=document.createElement("input");a.style.display="none";a.type="submit";b.appendChild(a);a.click();b.removeChild(a)};
akeeba.System.orderTable=function(){var a=document.getElementById("sortTable"),b=document.getElementById("directionTable");a=a.options[a.selectedIndex].value;var c="asc";a===akeeba.System.getOptions("akeeba.System.tableOrder","asc")&&(c=b.options[b.selectedIndex].value);akeeba.System.tableOrdering(a,c)};
akeeba.System.iterateNodes=function(a,b,c){if("function"==typeof b&&("string"===typeof a&&(a=document.querySelectorAll(a)),0!==a.length)){var d;for(d=0;d<a.length;d++){var e=a[d];"undefined"!==typeof c?b(e,c):b(e)}}};
akeeba.System.assignDefaultErrorHandler=function(){akeeba.System.params.errorCallback=akeeba.System.modalErrorHandler;if("undefined"===typeof akeeba.Modal)akeeba.System.params.errorCallback=akeeba.System.defaultErrorHandler;else{var a=akeeba.System.getOptions("akeeba.System.params.errorDialogId",akeeba.System.params.errorDialogId),b=akeeba.System.getOptions("akeeba.System.params.errorDialogMessageId",akeeba.System.params.errorDialogMessageId);if(""===a||null===a||""===b||null===b)akeeba.System.params.errorCallback=
akeeba.System.defaultErrorHandler;else if(a=document.getElementById(a),b=document.getElementById(b),null===a||null===b)akeeba.System.params.errorCallback=akeeba.System.defaultErrorHandler}};
akeeba.System.documentReady(function(){akeeba.System.assignDefaultErrorHandler();akeeba.System.iterateNodes(".akeebaGridViewCheckAll",function(a){akeeba.System.addEventListener(a,"click",function(){Joomla.checkAll(this)})});akeeba.System.iterateNodes(".akeebaGridViewOrderTable",function(a){akeeba.System.addEventListener(a,"change",akeeba.System.orderTable)});akeeba.System.iterateNodes(".akeebaGridViewAutoSubmitOnChange",function(a){akeeba.System.addEventListener(a,"change",function(){akeeba.System.submitForm()})})});
akeeba.System.Text={strings:{},_:function(a,b){["akeeba.text","joomla.jtext"].forEach(function(a){var b=akeeba.System.getOptions(a);b&&(akeeba.System.Text.load(b),b={},b[a]=null,akeeba.System.loadOptions(b))});b=void 0===b?"":b;a=a.toUpperCase();return void 0!==akeeba.System.Text.strings[a]?akeeba.System.Text.strings[a]:"undefined"!=typeof Joomla.JText?Joomla.JText._(a,b):"undefined"!=typeof Joomla.Text?Joomla.Text._(a,b):b},load:function(a){for(var b in a)a.hasOwnProperty(b)&&(this.strings[b.toUpperCase()]=
a[b]);return this}}; //# sourceMappingURL=System.min.map
// ============================================================================
// /media/com_akeeba/js/Tooltip.min.js
// ============================================================================
/*
Copyright (c)2006-2020 Nicholas K. Dionysopoulos / Akeeba Ltd
@license GNU General Public License version 3, or later
*/
if("undefined"==typeof akeeba)var akeeba={};"undefined"==typeof akeeba.Tooltip&&(akeeba.Tooltip={});akeeba.Tooltip.enableFor=function(a,b){if("undefined"==typeof b||null===b)b=!0;if("object"==typeof a&&NodeList.prototype.isPrototypeOf(a))for(i=0;i<a.length;i++)akeeba.Tooltip.enableFor(a[i],b);else akeeba.System.addEventListener(a,"mouseenter",akeeba.Tooltip.onMouseEnter),akeeba.System.addEventListener(a,"mouseleave",akeeba.Tooltip.onMouseLeave),b&&akeeba.System.addEventListener(a,"click",akeeba.Tooltip.onClick)};
akeeba.Tooltip.simpleTooltip=function(a){if(a.hasAttribute("title")){var b=a.getAttribute("title"),c="right";a.hasAttribute("data-akeeba-tooltip-position")&&(c=a.getAttribute("data-akeeba-tooltip-position"));akeeba.System.addClass(a,"akeeba-hasTooltip");var d=document.createElement("div");d.className="akeeba-tooltip-text akeeba-tooltip-text-"+c;d.innerHTML=b;a.appendChild(d);a.removeAttribute("title")}};
akeeba.Tooltip.onMouseEnter=function(a){if(a.target.hasAttribute("data-content")){if(a.target.hasAttribute("data-tooltip-uuid"))var b=a.target.getAttribute("data-tooltip-uuid");else b=Math.uuid(),a.target.setAttribute("data-tooltip-uuid",b);if(null==document.getElementById("akeeba-tooltip-"+b)){var c=a.target.getAttribute("data-position")||"center bottom",d=c.split(" ")[0],e=c.split(" ")[1],f=document.createElement("div");f.className="akeeba-popover";f.id="akeeba-tooltip-"+b;f.style.display="block";
f.className+=" "+c;f.insertAdjacentHTML("afterbegin",'<div class="arrow"></div>');b=document.createElement("div");b.className="akeeba-popover-inner";f.appendChild(b);a.target.hasAttribute("data-original-title")&&(c=document.createElement("h3"),c.className="akeeba-popover-title",c.innerHTML=a.target.getAttribute("data-original-title"),b.appendChild(c));c=document.createElement("div");c.className="akeeba-popover-content";c.innerHTML=a.target.getAttribute("data-content");b.appendChild(c);document.body.appendChild(f);
akeeba.Tooltip.positionAt(a.target,f,d,e)}}};akeeba.Tooltip.onMouseLeave=function(a){a.target.hasAttribute("data-tooltip-noclose")||akeeba.Tooltip.hideTooltip(a.target)};akeeba.Tooltip.onClick=function(a){if(a.target.hasAttribute("data-tooltip-uuid"))if(a.target.hasAttribute("data-tooltip-noclose"))a.target.removeAttribute("data-tooltip-noclose");else{var b=a.target.getAttribute("data-tooltip-uuid");null!=document.getElementById("akeeba-tooltip-"+b)&&a.target.setAttribute("data-tooltip-noclose",1)}};
akeeba.Tooltip.hideTooltip=function(a){a.hasAttribute("data-tooltip-uuid")&&(a=a.getAttribute("data-tooltip-uuid"),(a=document.getElementById("akeeba-tooltip-"+a))&&document.body.removeChild(a))};
akeeba.Tooltip.positionAt=function(a,b,c,d){var e=a.getBoundingClientRect();switch(c){case "left":a=parseInt(e.left)-10-b.offsetWidth;0>parseInt(e.left)-b.offsetWidth&&(a=10);break;case "right":a=e.right+10;parseInt(e.right)+b.offsetWidth>document.documentElement.clientWidth&&(a=document.documentElement.clientWidth-b.offsetWidth-10);break;default:case "center":a=parseInt(e.left)+(a.offsetWidth-b.offsetWidth)/2}switch(d){case "center":d=(parseInt(e.top)+parseInt(e.bottom))/2-b.offsetHeight/2;break;
case "bottom":d=parseInt(e.bottom)+10;break;default:case "top":d=parseInt(e.top)-b.offsetHeight-10}a=0>a?parseInt(e.left):a;d=0>d?parseInt(e.bottom)+10:d;b.style.left=a+"px";b.style.top=d+pageYOffset+"px"}; //# sourceMappingURL=Tooltip.min.map
// ============================================================================
// /media/com_akeeba/js/piecon.min.js
// ============================================================================
/*
piecon.js
https://github.com/lipka/piecon
Copyright (c) 2015 Lukas Lipka <lukaslipka@gmail.com>. All rights reserved.
*/
var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.ASSUME_ES5=!1;$jscomp.ASSUME_NO_NATIVE_MAP=!1;$jscomp.ASSUME_NO_NATIVE_SET=!1;$jscomp.SIMPLE_FROUND_POLYFILL=!1;$jscomp.defineProperty=$jscomp.ASSUME_ES5||"function"==typeof Object.defineProperties?Object.defineProperty:function(b,g,c){b!=Array.prototype&&b!=Object.prototype&&(b[g]=c.value)};$jscomp.getGlobal=function(b){return"undefined"!=typeof window&&window===b?b:"undefined"!=typeof global&&null!=global?global:b};$jscomp.global=$jscomp.getGlobal(this);
$jscomp.polyfill=function(b,g,c,d){if(g){c=$jscomp.global;b=b.split(".");for(d=0;d<b.length-1;d++){var f=b[d];f in c||(c[f]={});c=c[f]}b=b[b.length-1];d=c[b];g=g(d);g!=d&&null!=g&&$jscomp.defineProperty(c,b,{configurable:!0,writable:!0,value:g})}};$jscomp.polyfill("Array.prototype.fill",function(b){return b?b:function(b,c,d){var f=this.length||0;0>c&&(c=Math.max(0,f+c));if(null==d||d>f)d=f;d=Number(d);0>d&&(d=Math.max(0,f+d));for(c=Number(c||0);c<d;c++)this[c]=b;return this}},"es6","es3");
(function(){var b={},g=null,c=null,d=null,f=null,k={},l={color:"#ff0084",background:"#bbb",shadow:"#fff",fallback:!1},p=1<window.devicePixelRatio,h=function(){var b=navigator.userAgent.toLowerCase();return function(a){return-1!==b.indexOf(a)}}(),q=h("msie");h("chrome");h("chrome")||h("safari");var r=h("safari")&&!h("chrome");!h("mozilla")||h("chrome")||h("safari");var m=function(b){for(var a=Array.prototype.slice.call(document.getElementsByTagName("link"),0),d=document.getElementsByTagName("head")[0],
c=0,f=a.length;c<f;c++)"icon"!==a[c].getAttribute("rel")&&"shortcut icon"!==a[c].getAttribute("rel")||d.removeChild(a[c]);a=document.createElement("link");a.type="image/x-icon";a.rel="icon";a.href=b;document.getElementsByTagName("head")[0].appendChild(a)},n=function(){f||(f=document.createElement("canvas"),p?(f.width=32,f.height=32):(f.width=16,f.height=16));return f};b.setOptions=function(b){k={};for(var a in l)k[a]=b.hasOwnProperty(a)?b[a]:l[a];return this};b.setProgress=function(b){d||(d=document.title);
if(!c||!g){a:{var a=document.getElementsByTagName("link");for(var e=0,f=a.length;e<f;e++)if("icon"===a[e].getAttribute("rel")||"shortcut icon"===a[e].getAttribute("rel")){a=a[e];break a}a=!1}c=g=a?a.getAttribute("href"):"/favicon.ico"}if(!isNaN(parseFloat(b))&&isFinite(b))!n().getContext||q||r||!0===k.fallback?document.title=0<b?"("+b+"%) "+d:d:("force"===k.fallback&&(document.title=0<b?"("+b+"%) "+d:d),a=n(),e=a.getContext("2d"),b=b||0,e&&(e.clearRect(0,0,a.width,a.height),e.beginPath(),e.moveTo(a.width/
2,a.height/2),e.arc(a.width/2,a.height/2,Math.min(a.width/2,a.height/2),0,2*Math.PI,!1),e.fillStyle=k.shadow,e.fill(),e.beginPath(),e.moveTo(a.width/2,a.height/2),e.arc(a.width/2,a.height/2,Math.min(a.width/2,a.height/2)-2,0,2*Math.PI,!1),e.fillStyle=k.background,e.fill(),0<b&&(e.beginPath(),e.moveTo(a.width/2,a.height/2),e.arc(a.width/2,a.height/2,Math.min(a.width/2,a.height/2)-2,-.5*Math.PI,(-.5+2*b/100)*Math.PI,!1),e.lineTo(a.width/2,a.height/2),e.fillStyle=k.color,e.fill()),m(a.toDataURL())));
else return!1};b.reset=function(){d&&(document.title=d);c&&(g=c,m(g))};b.setOptions(l);"function"===typeof define&&define.amd?define(b):"undefined"!==typeof module?module.exports=b:window.Piecon=b})(); //# sourceMappingURL=piecon.min.map
// ============================================================================
// /media/com_akeeba/js/Configuration.min.js
// ============================================================================
/*
Copyright (c)2006-2020 Nicholas K. Dionysopoulos / Akeeba Ltd
@license GNU General Public License version 3, or later
*/
if("undefined"===typeof akeeba)var akeeba={};
"undefined"===typeof akeeba.Configuration&&(akeeba.Configuration={},akeeba.Configuration.GUI={},akeeba.Configuration.engines={},akeeba.Configuration.installers={},akeeba.Configuration.URLs={},akeeba.Configuration.FtpBrowser={params:{}},akeeba.Configuration.SftpBrowser={params:{}},akeeba.Configuration.FtpTest={},akeeba.Configuration.SftpTest={},akeeba.Configuration.FtpModal=null,akeeba.Configuration.passwordFields={},akeeba.Configuration.fsBrowser={params:{dialogId:"folderBrowserDialog",dialogBodyId:"folderBrowserDialogBody"},
modalObject:null});akeeba.Configuration.parseConfigData=function(a){akeeba.Configuration.engines=a.engines;akeeba.Configuration.installers=a.installers;akeeba.Configuration.parseGuiData(a.gui)};
akeeba.Configuration.restoreDefaultPasswords=function(){for(curid in akeeba.Configuration.passwordFields)if(akeeba.Configuration.passwordFields.hasOwnProperty(curid)){var a=akeeba.Configuration.passwordFields[curid];if(myElement=document.getElementById(curid))myElement.value="WORKAROUND FOR NAUGHTY BROWSERS",myElement.value=a}};
akeeba.Configuration.onBrowser=function(a,b){akeeba.Configuration.onBrowserCallback=function(a){b.value=a;"object"==typeof akeeba.Configuration.fsBrowser.modalObject&&akeeba.Configuration.fsBrowser.modalObject.close&&akeeba.Configuration.fsBrowser.modalObject.close()};a=akeeba.Configuration.URLs.browser+encodeURIComponent(a);var d=document.getElementById(akeeba.Configuration.fsBrowser.params.dialogBodyId);d.innerHTML="";var e=document.createElement("iframe");e.setAttribute("src",a);e.setAttribute("width",
"100%");e.setAttribute("height",400);e.setAttribute("frameborder",0);e.setAttribute("allowtransparency","true");d.appendChild(e);akeeba.Configuration.fsBrowser.modalObject=akeeba.Modal.open({inherit:"#"+akeeba.Configuration.fsBrowser.params.dialogId,width:"80%"})};
akeeba.Configuration.FtpBrowser.callback=function(a){var b="/".replace(/([\[\]\(\)\.\?\/\*\{\}\+\$\^:])/g,"$1");a="/"+(a+"").replace(new RegExp("^["+b+"]+","g"),"");document.getElementById("var["+akeeba.Configuration.FtpBrowser.params.key+"]").value=a};
akeeba.Configuration.FtpBrowser.initialise=function(a,b){akeeba.Configuration.FtpBrowser.params.host=document.getElementById("var["+b+".host]").value;akeeba.Configuration.FtpBrowser.params.port=document.getElementById("var["+b+".port]").value;akeeba.Configuration.FtpBrowser.params.username=document.getElementById("var["+b+".user]").value;akeeba.Configuration.FtpBrowser.params.password=document.getElementById("var["+b+".pass]").value;akeeba.Configuration.FtpBrowser.params.passive=document.getElementById("var["+
b+".passive_mode]").checked;akeeba.Configuration.FtpBrowser.params.ssl=document.getElementById("var["+b+".ftps]").checked;akeeba.Configuration.FtpBrowser.params.directory=document.getElementById("var["+b+".initial_directory]").value;akeeba.Configuration.FtpBrowser.params.key=a;akeeba.Configuration.FtpBrowser.open()};
akeeba.Configuration.FtpBrowser.open=function(){var a=document.getElementById("ftpdialog");akeeba.System.addEventListener(document.getElementById("ftpdialogOkButton"),"click",function(a){akeeba.Configuration.FtpBrowser.callback(akeeba.Configuration.FtpBrowser.params.directory);"object"==typeof akeeba.Configuration.FtpModal&&akeeba.Configuration.FtpModal.close&&akeeba.Configuration.FtpModal.close()});akeeba.System.addEventListener(document.getElementById("ftpdialogCancelButton"),"click",function(a){"object"==
typeof akeeba.Configuration.FtpModal&&akeeba.Configuration.FtpModal.close&&akeeba.Configuration.FtpModal.close()});akeeba.Configuration.FtpModal=akeeba.System.Modal.open({inherit:a,width:"80%"});document.getElementById("ftpBrowserErrorContainer").style.display="none";document.getElementById("ftpBrowserFolderList").innerHTML="";document.getElementById("ftpBrowserCrumbs").innerHTML="";akeeba.System.params.AjaxURL=akeeba.Configuration.URLs.ftpBrowser;empty(akeeba.Configuration.FtpBrowser.params.directory)&&
(akeeba.Configuration.FtpBrowser.params.directory="");akeeba.System.doAjax({host:akeeba.Configuration.FtpBrowser.params.host,username:akeeba.Configuration.FtpBrowser.params.username,password:akeeba.Configuration.FtpBrowser.params.password,passive:akeeba.Configuration.FtpBrowser.params.passive?1:0,ssl:akeeba.Configuration.FtpBrowser.params.ssl?1:0,directory:akeeba.Configuration.FtpBrowser.params.directory},function(a){var b=document.getElementById("ak_crumbs2"),e=document.getElementById("ftpBrowserFolderList");
e.style.display="none";b.style.display="none";if(0!=a.error)document.getElementById("ftpBrowserError").innerHTML=a.error,document.getElementById("ftpBrowserErrorContainer").style.display="block";else{document.getElementById("ftpBrowserErrorContainer").style.display="none";if(!empty(a.breadcrumbs)){b.style.display="block";b.innerHTML="";var c="/";akeeba.Configuration.FtpBrowser.addCrumb(akeeba.System.Text._("COM_AKEEBA_FILEFILTERS_LABEL_UIROOT"),"/",b);for(i=0;i<a.breadcrumbs.length;i++){var f=a.breadcrumbs[i];
c+="/"+f;akeeba.Configuration.FtpBrowser.addCrumb(f,c,b)}}if(!empty(a.list))for(e.style.display="block",akeeba.Configuration.FtpBrowser.params.directory||(akeeba.Configuration.FtpBrowser.params.directory=a.directory),i=0;i<a.list.length;i++)b=a.list[i],akeeba.Configuration.FtpBrowser.createLink(a.directory+"/"+b,b,e)}},function(a){document.getElementById("ftpBrowserError").innerHTML=a;document.getElementById("ftpBrowserErrorContainer").style.display="block";document.getElementById("ftpBrowserFolderList").style.display=
"none";document.getElementById("ftpBrowserCrumbs").style.display="none"},!1)};akeeba.Configuration.FtpBrowser.createLink=function(a,b,d,e){"undefined"==typeof e&&(e=akeeba.Configuration.FtpBrowser);var c=document.createElement("tr"),f=document.createElement("td");c.appendChild(f);var g=document.createElement("a");g.textContent=b;akeeba.System.addEventListener(g,"click",function(){e.params.directory=a;e.open()});f.appendChild(g);d.appendChild(c)};
akeeba.Configuration.FtpBrowser.addCrumb=function(a,b,d,e){"undefined"==typeof e&&(e=akeeba.Configuration.FtpBrowser);var c=document.createElement("li"),f=document.createElement("a");f.textContent=a;akeeba.System.addEventListener(f,"click",function(a){e.params.directory=b;e.open();a.preventDefault?a.preventDefault():a.returnValue=!1});c.appendChild(f);d.appendChild(c)};
akeeba.Configuration.SftpBrowser.initialise=function(a,b){akeeba.Configuration.SftpBrowser.params.host=document.getElementById("var["+b+".host]").value;akeeba.Configuration.SftpBrowser.params.port=document.getElementById("var["+b+".port]").value;akeeba.Configuration.SftpBrowser.params.username=document.getElementById("var["+b+".user]").value;akeeba.Configuration.SftpBrowser.params.password=document.getElementById("var["+b+".pass]").value;akeeba.Configuration.SftpBrowser.params.directory=document.getElementById("var["+
b+".initial_directory]").value;akeeba.Configuration.SftpBrowser.params.privKey=document.getElementById("var["+b+".privkey]").value;akeeba.Configuration.SftpBrowser.params.pubKey=document.getElementById("var["+b+".pubkey]").value;akeeba.Configuration.SftpBrowser.params.key=a;akeeba.Configuration.SftpBrowser.open()};
akeeba.Configuration.SftpBrowser.open=function(){var a=document.getElementById("sftpdialog");a.style.display="block";akeeba.System.addEventListener(document.getElementById("sftpdialogOkButton"),"click",function(a){akeeba.Configuration.SftpBrowser.callback(akeeba.Configuration.SftpBrowser.params.directory);"object"==typeof akeeba.Configuration.FtpModal&&akeeba.Configuration.FtpModal.close&&akeeba.Configuration.FtpModal.close()});akeeba.System.addEventListener(document.getElementById("sftpdialogCancelButton"),
"click",function(a){"object"==typeof akeeba.Configuration.FtpModal&&akeeba.Configuration.FtpModal.close&&akeeba.Configuration.FtpModal.close()});akeeba.Configuration.FtpModal=akeeba.System.Modal.open({inherit:a,width:"80%"});document.getElementById("sftpBrowserErrorContainer").style.display="none";document.getElementById("sftpBrowserFolderList").innerHTML="";document.getElementById("sftpBrowserCrumbs").innerHTML="";akeeba.System.params.AjaxURL=akeeba.Configuration.URLs.sftpBrowser;empty(akeeba.Configuration.SftpBrowser.params.directory)&&
(akeeba.Configuration.SftpBrowser.params.directory="");akeeba.System.doAjax({host:akeeba.Configuration.SftpBrowser.params.host,port:akeeba.Configuration.SftpBrowser.params.port,username:akeeba.Configuration.SftpBrowser.params.username,password:akeeba.Configuration.SftpBrowser.params.password,directory:akeeba.Configuration.SftpBrowser.params.directory,privkey:akeeba.Configuration.SftpBrowser.params.privKey,pubkey:akeeba.Configuration.SftpBrowser.params.pubKey},function(a){var b=document.getElementById("sftpBrowserFolderList"),
e=document.getElementById("ak_scrumbs");b.style.display="none";e.style.display="none";if(0!=a.error)document.getElementById("sftpBrowserError").innerHTML=a.error,document.getElementById("sftpBrowserErrorContainer").style.display="block";else{document.getElementById("ftpBrowserErrorContainer").style.display="none";if(!empty(a.breadcrumbs)){e.style.display="block";e.innerHTML="";var c="/";akeeba.Configuration.FtpBrowser.addCrumb(akeeba.System.Text._("COM_AKEEBA_FILEFILTERS_LABEL_UIROOT"),"/",e,akeeba.Configuration.SftpBrowser);
for(i=0;i<a.breadcrumbs.length;i++){var f=a.breadcrumbs[i];c+="/"+f;akeeba.Configuration.FtpBrowser.addCrumb(f,c,e,akeeba.Configuration.SftpBrowser)}}if(!empty(a.list))for(b.style.display="block",akeeba.Configuration.SftpBrowser.params.directory||(akeeba.Configuration.SftpBrowser.params.directory=a.directory),i=0;i<a.list.length;i++)e=a.list[i],akeeba.Configuration.FtpBrowser.createLink(a.directory+"/"+e,e,b,akeeba.Configuration.SftpBrowser)}},function(a){document.getElementById("sftpBrowserError").innerHTML=
a;document.getElementById("sftpBrowserErrorContainer").style.display="block";document.getElementById("sftpBrowserFolderList").style.display="none";document.getElementById("sftpBrowserCrumbs").style.display="none"},!1)};akeeba.Configuration.SftpBrowser.callback=function(a){var b="/".replace(/([\[\]\(\)\.\?\/\*\{\}\+\$\^:])/g,"$1");a="/"+(a+"").replace(new RegExp("^["+b+"]+","g"),"");document.getElementById("var["+akeeba.Configuration.SftpBrowser.params.key+"]").value=a};
akeeba.Configuration.FtpTest.testConnection=function(a,b,d){var e=document.getElementById("var["+a+"]");akeeba.Configuration.FtpTest.buttonKey="var["+a+"]";null===e&&(e=document.getElementById(a),akeeba.Configuration.FtpTest.buttonKey=a);null===e&&console.warn("Button "+akeeba.Configuration.FtpTest.buttonKey+" not found");e.setAttribute("disabled","disabled");a={};try{a={isCurl:d?1:0,host:document.getElementById("var["+b+".host]").value,port:document.getElementById("var["+b+".port]").value,user:document.getElementById("var["+
b+".user]").value,pass:document.getElementById("var["+b+".pass]").value,initdir:document.getElementById("var["+b+".initial_directory]").value,usessl:document.getElementById("var["+b+".ftps]").checked,passive:document.getElementById("var["+b+".passive_mode]").checked,passive_mode_workaround:0}}catch(c){a={isCurl:d?1:0,host:document.getElementById(b+"_host").value,port:document.getElementById(b+"_port").value,user:document.getElementById(b+"_user").value,pass:document.getElementById(b+"_pass").value,
initdir:document.getElementById(b+"_initial_directory").value,usessl:document.getElementById(b+"_ftps").checked,passive:document.getElementById(b+"_passive_mode").checked,passive_mode_workaround:0}}if(d)try{a.passive_mode_workaround=document.getElementById("var["+b+".passive_mode_workaround]").checked}catch(c){a.passive_mode_workaround=document.getElementById(b+"_passive_mode_workaround").checked}akeeba.System.params.AjaxURL=akeeba.Configuration.URLs.testFtp;console.log(a);console.log(akeeba.System.params.AjaxURL);
akeeba.System.doAjax(a,function(a){document.getElementById(akeeba.Configuration.FtpTest.buttonKey).removeAttribute("disabled");var b=document.getElementById("testFtpDialogBodyOk"),c=document.getElementById("testFtpDialogBodyFail"),d=document.getElementById("testFtpDialogLabel");b.style.display="none";c.style.display="none";!0===a?(d.textContent=akeeba.System.Text._("COM_AKEEBA_CONFIG_DIRECTFTP_TEST_OK"),b.textContent=akeeba.System.Text._("COM_AKEEBA_CONFIG_DIRECTFTP_TEST_OK"),b.style.display="block",
c.style.display="none"):(d.textContent=akeeba.System.Text._("COM_AKEEBA_CONFIG_DIRECTFTP_TEST_FAIL"),c.textContent=a,b.style.display="none",c.style.display="block");akeeba.Modal.open({inherit:"#testFtpDialog",width:"80%"})},null,!1,15E3)};
akeeba.Configuration.SftpTest.testConnection=function(a,b,d){var e=document.getElementById("var["+a+"]");akeeba.Configuration.SftpTest.buttonKey="var["+a+"]";e.setAttribute("disabled","disabled");a={isCurl:d?1:0,host:document.getElementById("var["+b+".host]").value,port:document.getElementById("var["+b+".port]").value,user:document.getElementById("var["+b+".user]").value,pass:document.getElementById("var["+b+".pass]").value,initdir:document.getElementById("var["+b+".initial_directory]").value,privkey:document.getElementById("var["+
b+".privkey]").value,pubkey:document.getElementById("var["+b+".pubkey]").value};akeeba.System.params.AjaxURL=akeeba.Configuration.URLs.testSftp;akeeba.System.doAjax(a,function(a){document.getElementById(akeeba.Configuration.SftpTest.buttonKey).removeAttribute("disabled");var b=document.getElementById("testFtpDialogBodyOk"),c=document.getElementById("testFtpDialogBodyFail"),d=document.getElementById("testFtpDialogLabel");b.style.display="none";c.style.display="none";!0===a?(d.textContent=akeeba.System.Text._("COM_AKEEBA_CONFIG_DIRECTSFTP_TEST_OK"),
b.textContent=akeeba.System.Text._("COM_AKEEBA_CONFIG_DIRECTSFTP_TEST_OK"),b.style.display="block",c.style.display="none"):(d.textContent=akeeba.System.Text._("COM_AKEEBA_CONFIG_DIRECTSFTP_TEST_FAIL"),c.textContent=a,b.style.display="none",c.style.display="block");akeeba.Modal.open({inherit:"#testFtpDialog",width:"80%"})},null,!1,15E3)};
akeeba.Configuration.enablePopoverFor=function(a){if("object"==typeof a&&NodeList.prototype.isPrototypeOf(a))for(i=0;i<a.length;i++)akeeba.Configuration.enablePopoverFor(a[i]);else akeeba.Tooltip.enableFor(a)};
akeeba.Configuration.parseGuiData=function(a,b){null==b&&(b=document.getElementById("akeebagui"));b.innerHTML="";var d=0,e;for(e in a)if(a.hasOwnProperty(e)){var c=a[e];d++;if(!empty(c)){var f=document.createElement("div");f.className="akeeba-panel--info";b.appendChild(f);var g=document.createElement("header");g.id="auigrp_"+b.id+"_"+d;g.className="akeeba-block-header";var h=document.createElement("h5");h.innerHTML=e;g.appendChild(h);f.appendChild(g);for(var k in c)if(c.hasOwnProperty(k)){g=c[k];
h="var["+k+"]";var l=document.createElement("div");l.className="akeeba-ui-optionrow akeeba-form-group";l.id="akconfigrow."+k;"hidden"!=g.type&&"none"!=g.type&&f.appendChild(l);akeeba.Configuration.GUI.renderOptionLabel(h,g,l);var n=document.createElement("div");n.className="akeeba-form-controls";var m="renderOptionType"+(g.type[0].toUpperCase()+g.type.slice(1));if("function"===typeof akeeba.Configuration.GUI[m])akeeba.Configuration.GUI[m](h,g,n,l,f);else akeeba.Configuration.GUI.renderOptionTypeUnknown(h,
g,n,l,f)}}}akeeba.Configuration.enablePopoverFor(b.querySelectorAll('[rel="akeeba-sticky-tooltip"]'))};
akeeba.Configuration.GUI.renderOptionLabel=function(a,b,d){if("hidden"!=b.type&&"none"!=b.type){var e=document.createElement("label");e.className="akeeba-control-label";e.setAttribute("for",a);e.innerHTML=b.title;b.description&&(e.setAttribute("rel","akeeba-sticky-tooltip"),e.setAttribute("data-original-title",b.title),e.setAttribute("data-content",b.description));b.bold&&(e.style.fontWeight="bold");d.appendChild(e)}};akeeba.Configuration.GUI.renderOptionTypeNone=function(a,b,d,e,c){};
akeeba.Configuration.GUI.renderOptionTypeHidden=function(a,b,d,e,c){d=document.createElement("input");d.id=a;d.setAttribute("type","hidden");d.setAttribute("name",a);d.setAttribute("size","40");d.value=b["default"];c.appendChild(d)};akeeba.Configuration.GUI.renderOptionTypeSeparator=function(a,b,d,e,c){a=document.createElement("div");a.className="akeeba_ui_separator";c.appendChild(a)};
akeeba.Configuration.GUI.renderOptionTypeCheckandhide=function(a,b,d,e,c){c=document.createElement("span");d.appendChild(c);e.appendChild(d);d=document.createElement("input");d.setAttribute("type","hidden");d.id=a;d.setAttribute("name",a);d.setAttribute("size","40");d.value=b["default"];c.appendChild(d);a=b.labelempty;""!=b["default"]&&(a=b.labelnotempty);d=document.createElement("span");d.textContent=a;c.appendChild(d);akeeba.System.data.set(d,"labelempty",b.labelempty);akeeba.System.data.set(d,
"labelnotempty",b.labelnotempty)};
akeeba.Configuration.GUI.renderOptionTypeInstaller=function(a,b,d,e,c){c=document.createElement("select");c.className="akeeba-configuration-select-installer";c.id=a;c.setAttribute("name",a);for(key in akeeba.Configuration.installers)if(akeeba.Configuration.installers.hasOwnProperty(key)){a=akeeba.Configuration.installers[key];var f=document.createElement("option");f.value=key;f.innerHTML=a.name;b["default"]==key&&f.setAttribute("selected",1);c.appendChild(f)}d.appendChild(c);e.appendChild(d)};
akeeba.Configuration.GUI.renderOptionTypeEngine=function(a,b,d,e,c){var f=b.subtype;if(null!=akeeba.Configuration.engines[f]){var g=a.substr(4,a.length-5),h=document.createElement("div");h.id=g+"_config";h.className="akeeba-hidden-mobile akeeba-hidden-desktop akeeba-engine-options";var k=document.createElement("select");k.id=a;k.setAttribute("name",a);a=akeeba.Configuration.engines[f];for(key in a)if(a.hasOwnProperty(key)){c=a[key];var l=document.createElement("option");l.value=key;l.innerHTML=c.information.title;
b["default"]==key&&l.setAttribute("selected","selected");k.appendChild(l)}akeeba.System.addEventListener(k,"change",function(a){a={};var b=[document.getElementById(g+"_config").querySelectorAll("input"),document.getElementById(g+"_config").querySelectorAll("select")];for(i=0;i<b.length;i++){var c=b[i];if(c.length)for(j=0;j<c.length;j++){var d=c[j];var e=d.id;a[e]=d.value;"checkbox"==d.getAttribute("type")?a[e]=d.checked:"select"==d.getAttribute("type")&&(a[e]=d.options[d.selectedIndex].value)}}var l=
akeeba.Configuration.engines[f][k.value];b={};b[l.information.title]=l.parameters;akeeba.Configuration.parseGuiData(b,h);b=h.querySelector("header");b instanceof Element&&b.insertAdjacentHTML("afterend",'<p class="akeeba-block--information">'+l.information.description+"</p>");b=[document.getElementById(g+"_config").querySelectorAll("input"),document.getElementById(g+"_config").querySelectorAll("select")];for(i=0;i<b.length;i++)if(c=b[i],c.length)for(j=0;j<c.length;j++)d=c[j],e=d.id,e=a[e],null!=e&&
void 0!=e&&("checkbox"==d.getAttribute("type")?e?d.setAttribute("checked","checked"):d.removeAttribute("checked"):d.value=e,1==i&&akeeba.System.triggerEvent(d,"change"));if("undefined"!==typeof l.information.activation_callback)window[l.information.activation_callback](l.parameters)});a=document.createElement("button");a.className="akeeba-btn--small--dark";c=document.createElement("span");c.className="akion-wrench";a.appendChild(c);c=document.createElement("span");c.innerHTML=akeeba.System.Text._("COM_AKEEBA_CONFIG_UI_CONFIG");
a.appendChild(c);akeeba.System.addEventListener(a,"click",function(a){akeeba.System.toggleClass(h,"akeeba-hidden-mobile");akeeba.System.toggleClass(h,"akeeba-hidden-desktop");a.preventDefault?a.preventDefault():a.returnValue=!1});c=document.createElement("span");c.innerHTML=" ";d.appendChild(k);d.appendChild(c);d.appendChild(a);d.appendChild(h);e.appendChild(d);if(null!=akeeba.Configuration.engines[f][b["default"]]&&(d=akeeba.Configuration.engines[f][b["default"]],e=d.information.title,a={},
a[e]=d.parameters,0!=b["protected"]&&(document.createElement("span").textContent=e,k.style.display="none"),akeeba.Configuration.parseGuiData(a,h),b=h.querySelector("header"),b instanceof Element&&b.insertAdjacentHTML("afterend",'<p class="akeeba-block--information">'+d.information.description+"</p>"),"undefined"!==typeof d.information.activation_callback))window[d.information.activation_callback](d.parameters)}};
akeeba.Configuration.GUI.renderOptionTypeBrowsedir=function(a,b,d,e,c){var f=document.createElement("input");f.setAttribute("type","text");f.setAttribute("name",a);f.setAttribute("size","30");f.id=a;f.value=b["default"];a=document.createElement("button");a.className="akeeba-btn--grey";a.setAttribute("title",akeeba.System.Text._("COM_AKEEBA_CONFIG_UI_BROWSE"));b=document.createElement("span");b.className="akion-folder";a.appendChild(b);akeeba.System.addEventListener(a,"click",function(a){a.preventDefault?
a.preventDefault():a.returnValue=!1;if(null!=akeeba.Configuration.onBrowser)akeeba.Configuration.onBrowser(f.value,f);return!1});b=document.createElement("div");b.className="akeeba-input-group";c=document.createElement("span");c.className="akeeba-input-group-btn";b.appendChild(f);c.appendChild(a);b.appendChild(c);d.appendChild(b);e.appendChild(d)};
akeeba.Configuration.GUI.renderOptionTypeButtonedit=function(a,b,d,e,c){var f="hidden"==b.editortype?"hidden":"text";c=document.createElement("input");c.className="akeeba-configuration-buttonedit";c.setAttribute("type",f);c.setAttribute("name",a);c.setAttribute("size",30);c.value=b["default"];"1"==b.editordisabled&&c.setAttribute("disabled","disabled");a=document.createElement("button");a.innerHTML=akeeba.System.Text._(b.buttontitle);a.className="akeeba-btn--grey";akeeba.System.addEventListener(a,
"click",function(a){a.preventDefault?a.preventDefault():a.returnValue=!1;a=b.hook;try{window[a]()}catch(h){}});f=document.createElement("span");f.className="input-append";f.appendChild(c);f.appendChild(a);d.appendChild(f);e.appendChild(d)};
akeeba.Configuration.GUI.renderOptionTypeEnum=function(a,b,d,e,c){var f=document.createElement("select");f.className="akeeba-configuration-select-enum";f.id=a;f.setAttribute("name",a);a=b.enumvalues.split("|");c=b.enumkeys.split("|");for(counter=0;counter<a.length;counter++){var g=a[counter],h=c[counter],k=document.createElement("option");k.value=g;k.innerHTML=h;g==b["default"]&&k.setAttribute("selected","selected");f.appendChild(k)}"undefined"!==typeof b.onchange&&akeeba.System.addEventListener(f,
"change",function(){(0,b.onchange)(f)});d.appendChild(f);e.appendChild(d)};akeeba.Configuration.GUI.renderOptionTypeString=function(a,b,d,e,c){c=document.createElement("input");c.className="akeeba-configuration-string";c.setAttribute("type","text");c.id=a;c.setAttribute("name",a);c.setAttribute("size",40);c.value=b["default"];d.appendChild(c);e.appendChild(d)};
akeeba.Configuration.GUI.renderOptionTypePassword=function(a,b,d,e,c){akeeba.Configuration.passwordFields[a]=b["default"];c=document.createElement("input");c.className="akeeba-configuration-password";c.setAttribute("type","password");c.id=a;c.setAttribute("name",a);c.setAttribute("size",40);c.value=b["default"];c.setAttribute("autocomplete","off");d.appendChild(c);e.appendChild(d)};
akeeba.Configuration.GUI.renderOptionTypeInteger=function(a,b,d,e,c){c=a.substr(4,a.length-5);var f=document.createElement("input");f.id=c;f.setAttribute("name",a);f.setAttribute("type","hidden");f.value=b["default"];var g=document.createElement("input");g.setAttribute("type","text");g.setAttribute("size","10");g.id=c+"_custom";g.style.display="none";g.className="akeeba-form-input-mini";akeeba.System.addEventListener(g,"blur",function(){var a=parseFloat(g.value);a*=b.scale;a<b.min?a=b.min:a>b.max&&
(a=b.max);f.value=a;g.value=(a/b.scale).toFixed(2)});var h=document.createElement("select");h.id=c+"_dropdown";h.setAttribute("name",c+"_dropdown");h.className="akeeba-form-input-small";c=b.shortcuts.split("|");var k=b.scale;a=!1;for(counter=0;counter<c.length;counter++){var l=c[counter],n=l/k,m=document.createElement("option");m.value=l;m.innerHTML=n.toFixed(2);l==b["default"]&&(m.setAttribute("selected","selected"),a=!0);h.appendChild(m)}c=document.createElement("option");c.value=-1;c.innerHTML=
"Custom...";a||(c.setAttribute("selected","selected"),g.value=(b["default"]/b.scale).toFixed(2),g.style.display="inline-block");h.appendChild(c);akeeba.System.addEventListener(h,"change",function(){var a=h.value;-1==a?(g.value=(b["default"]/b.scale).toFixed(2),g.style.display="inline-block",akeeba.System.triggerEvent(g,"focus")):(f.value=a,g.style.display="none")});a=b.uom;"string"!=typeof a||empty(a)?(a="",d.appendChild(h),d.appendChild(g)):(c=document.createElement("div"),c.className="akeeba-input-group--small",
k=document.createElement("span"),k.textContent=" "+a,c.appendChild(h),c.appendChild(g),c.appendChild(k),d.appendChild(c));d.appendChild(f);e.appendChild(d)};
akeeba.Configuration.GUI.renderOptionTypeBool=function(a,b,d,e,c){c=document.createElement("div");c.className="akeeba-ui-checkbox";var f=document.createElement("input");f.setAttribute("name",a);f.setAttribute("type","hidden");f.value=0;c.appendChild(f);f=document.createElement("input");f.id=a;f.setAttribute("name",a);f.setAttribute("type","checkbox");f.setAttribute("value",1);0!=b["default"]&&f.setAttribute("checked","checked");c.appendChild(f);d.appendChild(c);e.appendChild(d)};
akeeba.Configuration.GUI.renderOptionTypeButton=function(a,b,d,e,c){c=e.querySelector("label");var f=b.hook;b=c.innerHTML;var g=document.createElement("button");g.id=a;g.innerHTML=b;g.className="akeeba-btn--grey";c.innerHTML=" ";akeeba.System.addEventListener(g,"click",function(a){a.preventDefault?a.preventDefault():a.returnValue=!1;try{window[f]()}catch(k){}});d.appendChild(g);e.appendChild(d)};
akeeba.Configuration.GUI.renderOptionTypeUnknown=function(a,b,d,e,c){a=a.substr(4,a.length-5);d="akeeba_render_"+b.type;c=window[d];if("function"==typeof c)c(a,b,label,e);else try{window[d](a,b,label,e)}catch(f){}};akeeba.Configuration.onChangeScriptType=function(a){a=a.options[a.selectedIndex].value;a="joomla"===a?"angie":"angie-"+a;for(var b=document.getElementById("var[akeeba.advanced.embedded_installer]"),d=b.children,e=0;e<d.length;e++)if(d[e].value===a){b.value=a;break}};
akeeba_directftp_init_browser=function(){akeeba.Configuration.FtpBrowser.initialise("engine.archiver.directftp.initial_directory","engine.archiver.directftp")};akeeba_postprocftp_init_browser=function(){akeeba.Configuration.FtpBrowser.initialise("engine.postproc.ftp.initial_directory","engine.postproc.ftp")};akeeba_directsftp_init_browser=function(){akeeba.Configuration.SftpBrowser.initialise("engine.archiver.directsftp.initial_directory","engine.archiver.directsftp")};
akeeba_postprocsftp_init_browser=function(){akeeba.Configuration.FtpBrowser.initialise("engine.postproc.sftp.initial_directory","engine.postproc.sftp")};directftp_test_connection=function(){akeeba.Configuration.FtpTest.testConnection("engine.archiver.directftp.ftp_test","engine.archiver.directftp",0)};postprocftp_test_connection=function(){akeeba.Configuration.FtpTest.testConnection("engine.postproc.ftp.ftp_test","engine.postproc.ftp",0)};
directftpcurl_test_connection=function(){akeeba.Configuration.FtpTest.testConnection("engine.archiver.directftpcurl.ftp_test","engine.archiver.directftpcurl",1)};postprocftpcurl_test_connection=function(){akeeba.Configuration.FtpTest.testConnection("engine.postproc.ftpcurl.ftp_test","engine.postproc.ftpcurl",1)};directsftp_test_connection=function(){akeeba.Configuration.SftpTest.testConnection("engine.archiver.directsftp.sftp_test","engine.archiver.directsftp",0)};
postprocsftp_test_connection=function(){akeeba.Configuration.SftpTest.testConnection("engine.postproc.sftp.sftp_test","engine.postproc.sftp",0)};directsftpcurl_test_connection=function(){akeeba.Configuration.SftpTest.testConnection("engine.archiver.directsftpcurl.sftp_test","engine.archiver.directsftpcurl",1)};postprocsftpcurl_test_connection=function(){akeeba.Configuration.SftpTest.testConnection("engine.postproc.sftpcurl.sftp_test","engine.postproc.sftpcurl",1)};
akconfig_dropbox_openoauth=function(){var a=akeeba.Configuration.URLs.dpeauthopen;a=-1==a.indexOf("?")?a+"?":a+"&";window.open(a+"engine=dropbox","akeeba_dropbox_window","width=1010,height=500")};
akconfig_dropbox_gettoken=function(){akeeba.System.AjaxURL=akeeba.Configuration.URLs.dpecustomapi;akeeba.System.doAjax({engine:"dropbox",method:"getauth"},function(a){""!=a.error?alert("ERROR: Could not complete authentication; please retry"):(document.getElementById("var[engine.postproc.dropbox.token]").value=a.token.oauth_token,document.getElementById("var[engine.postproc.dropbox.token_secret]").value=a.token.oauth_token_secret,document.getElementById("var[engine.postproc.dropbox.uid]").value=a.token.uid,
alert("Authentication successful!"))},function(a){alert("ERROR: Could not complete authentication; please retry\n"+a)},!1,15E3)};akconfig_dropbox2_openoauth=function(){var a=akeeba.Configuration.URLs.dpeauthopen;a=-1==a.indexOf("?")?a+"?":a+"&";window.open(a+"engine=dropbox2","akeeba_dropbox2_window","width=1010,height=500")};
akeeba_dropbox2_oauth_callback=function(a){document.getElementById("var[engine.postproc.dropbox2.access_token]").value=a.access_token;myWindow=window.open("","akeeba_dropbox2_window");myWindow.close()};akconfig_onedrive_openoauth=function(){var a=akeeba.Configuration.URLs.dpeauthopen;a=-1==a.indexOf("?")?a+"?":a+"&";window.open(a+"engine=onedrive","akeeba_onedrive_window","width=1010,height=500")};
akeeba_onedrive_oauth_callback=function(a){document.getElementById("var[engine.postproc.onedrive.access_token]").value=a.access_token;document.getElementById("var[engine.postproc.onedrive.refresh_token]").value=a.refresh_token;myWindow=window.open("","akeeba_onedrive_window");myWindow.close()};akconfig_onedrivebusiness_openoauth=function(){var a=akeeba.Configuration.URLs.dpeauthopen;a=-1==a.indexOf("?")?a+"?":a+"&";window.open(a+"engine=onedrivebusiness","akeeba_onedrivebusiness_window","width=1010,height=500")};
akeeba_onedrivebusiness_oauth_callback=function(a){document.getElementById("var[engine.postproc.onedrivebusiness.access_token]").value=a.access_token;document.getElementById("var[engine.postproc.onedrivebusiness.refresh_token]").value=a.refresh_token;myWindow=window.open("","akeeba_onedrivebusiness_window");myWindow.close()};
akconfig_googledrive_openoauth=function(){var a=akeeba.Configuration.URLs.dpeauthopen;a=-1==a.indexOf("?")?a+"?":a+"&";window.open(a+"engine=googledrive","akeeba_googledrive_window","width=1010,height=500")};
akeeba_googledrive_oauth_callback=function(a){document.getElementById("var[engine.postproc.googledrive.access_token]").value=a.access_token;document.getElementById("var[engine.postproc.googledrive.refresh_token]").value=a.refresh_token;myWindow=window.open("","akeeba_googledrive_window");myWindow.close();akeeba_googledrive_refreshdrives()};
akeeba_googledrive_refreshdrives=function(a){a=a||{};console.log(a);"undefined"===typeof a["engine.postproc.googledrive.team_drive"]&&(a["engine.postproc.googledrive.team_drive"]={"default":document.getElementById("var[engine.postproc.googledrive.team_drive]").value});akeeba.System.AjaxURL=akeeba.Configuration.URLs.dpecustomapi;var b={engine:"googledrive",method:"getDrives",params:{"engine.postproc.googledrive.access_token":document.getElementById("var[engine.postproc.googledrive.access_token]").value,
"engine.postproc.googledrive.refresh_token":document.getElementById("var[engine.postproc.googledrive.refresh_token]").value}};akeeba.System.doAjax(b,function(b){if(0===b.length)alert("ERROR: Could not retrieve list of Google Drives.");else{var d=document.getElementById("var[engine.postproc.googledrive.team_drive]");d.innerHTML="";for(var c=0;c<b.length;c++){var f=document.createElement("option");f.value=b[c][0];f.text=b[c][1];a["engine.postproc.googledrive.team_drive"]["default"]===f.value&&(f.selected=
!0);d.appendChild(f)}}},function(a){alert("ERROR: Could not retrieve list of Google Drives. Error: \n"+a)},!1,15E3)};akconfig_box_openoauth=function(){var a=akeeba.Configuration.URLs.dpeauthopen;a=-1==a.indexOf("?")?a+"?":a+"&";window.open(a+"engine=box","akeeba_box_window","width=1010,height=500")};
akconfig_box_oauth_callback=function(a){document.getElementById("var[engine.postproc.box.access_token]").value=a.access_token;document.getElementById("var[engine.postproc.box.refresh_token]").value=a.refresh_token;myWindow=window.open("","akeeba_box_window");myWindow.close()};akconfig_pcloud_openoauth=function(){var a=akeeba.Configuration.URLs.dpeauthopen;a=-1==a.indexOf("?")?a+"?":a+"&";window.open(a+"engine=pcloud","akeeba_pcloud_window","width=1010,height=500")};
akconfig_pcloud_oauth_callback=function(a){document.getElementById("var[engine.postproc.pcloud.access_token]").value=a.access_token;myWindow=window.open("","akeeba_pcloud_window");myWindow.close()};
akeeba.System.documentReady(function(){akeeba.Configuration.URLs=akeeba.System.getOptions("akeeba.Configuration.URLs",{});"undefined"!==typeof akeeba.Configuration.URLs.dpecustomapi&&(akeeba.System.params.AjaxURL=akeeba.Configuration.URLs.dpecustomapi);null!==akeeba.System.getOptions("akeeba.Configuration.GUIData",null)&&setTimeout(function(){setTimeout(akeeba.Configuration.restoreDefaultPasswords,1E3);akeeba.Configuration.parseConfigData(akeeba.System.getOptions("akeeba.Configuration.GUIData",{}));
akeeba.Configuration.enablePopoverFor(document.querySelectorAll('[rel="popover"]'))},10)}); //# sourceMappingURL=Configuration.min.map
akeeba.System.documentReady(function(){
var elButtons = document.querySelectorAll('#toolbar-lightning>button');
akeeba.System.iterateNodes(elButtons, function (elButton) {
akeeba.System.addClass(elButton, 'btn-primary');
});
});