(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 !== 'www.contante.es') { 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, () => { if (typeof settings.afterLoad == 'function') { settings.afterLoad(); } 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://www.contante.es/generated/js/script.js?368e58f7bc8bd5926fcb3dccba4b0e1e15b2b6456fa63837b499867134002ef0_e9be84c6a6b18b892bcc30d7b5cc79d3a9d54e534a5747b39766f76747ba14f9", }; ns.loadUrl = "https://www.contante.es/cf-document" + '/content'; }) (extend('CF.Unified.CFDocumentLoader'));