(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?8fb2fcafe08bcd9eddf14026cf9817cd4df67266e2b6fc7fd363fc9cd615ff39_9da5f6ca1bf1ea7ff7e9806a780727476da451af80086ccf69efa5da42a5a977", }; ns.loadUrl = "https://www.contante.es/ca/cf-document" + '/content'; }) (extend('CF.Unified.CFDocumentLoader'));