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