(function(ns){ ns.DependencyLoaderSettings = { scripts: function() { return [ CF.Unified.CFDocumentLoader.scripts.main ] } }; })(extend('CF.Unified.CFDocumentLoader')); (function (ns) { ns.DependencyLoader = function () { var settings = CF.Unified.CFDocumentLoader.DependencyLoaderSettings || {}; if (typeof jQuery === 'undefined') { throw new Error('JQuery not found! Required version >= 2.2.4'); } $.ajaxPrefilter(function (options) { if (window.location.hostname !== 'portal.avafin.pl') { options.crossDomain ={ crossDomain: true }; options.xhrFields = { withCredentials: true }; } }); $.ajaxSetup({ cache: true }); function worker(scripts, finishCb) { if (scripts.length <= 0 || !scripts) { finishCb(); return; } var script = scripts.shift(); $.getScript(script, function () { worker(scripts, finishCb); }); } this.load = function (finishCb) { if (typeof settings.beforeLoad == 'function') { settings.beforeLoad(); } var scripts = typeof settings.scripts == 'function' ? settings.scripts() : settings.scripts; worker(scripts, finishCb); }; } })(extend('CF.Unified.CFDocumentLoader')); function extend(ns_string) { window.CF = window.CF || {}; var parts = ns_string.split('.'), parent = window.CF, pl, i; if (parts[0] == "CF") { parts = parts.slice(1); } pl = parts.length; for (i = 0; i < pl; i++) { //create a property if it doesnt exist if (typeof parent[parts[i]] == 'undefined') { parent[parts[i]] = {}; } parent = parent[parts[i]]; } return parent; }(function (ns) { ns.scripts = { main: "https://portal.avafin.pl/generated/js/script.js?3b1d8d19a1e62e58142add7796beb218d4c6aa55e92614428b743c135215e2fe_03dce68823afa52c0d75916fbad3f8f318c51291eb5b88a158dfaad78b8319f9", }; ns.loadUrl = "https://portal.avafin.pl/cf-document" + '/content'; }) (extend('CF.Unified.CFDocumentLoader'));