{"version":3,"file":"vendors-load-script~CarouselBlock.chunk.408b6908ba9d18c6d92e.js","mappings":"iFA6CA,SAASA,EAAUC,EAAQC,GACzBD,EAAOE,OAAS,WACdC,KAAKC,QAAUD,KAAKD,OAAS,KAC7BD,EAAG,KAAMD,EACX,EACAA,EAAOI,QAAU,WAGfD,KAAKC,QAAUD,KAAKD,OAAS,KAC7BD,EAAG,IAAII,MAAM,kBAAoBF,KAAKG,KAAMN,EAC9C,CACF,CAEA,SAASO,EAASP,EAAQC,GACxBD,EAAOQ,mBAAqB,WACH,YAAnBL,KAAKM,YAA+C,UAAnBN,KAAKM,aAC1CN,KAAKK,mBAAqB,KAC1BP,EAAG,KAAMD,GACX,CACF,CA/DAU,EAAOC,QAAU,SAAeL,EAAKM,EAAMX,GACzC,IAAIY,EAAOC,SAASD,MAAQC,SAASC,qBAAqB,QAAQ,GAC9Df,EAASc,SAASE,cAAc,UAEhB,mBAATJ,IACTX,EAAKW,EACLA,EAAO,CAAC,GAGVA,EAAOA,GAAQ,CAAC,EAChBX,EAAKA,GAAM,WAAY,EAEvBD,EAAOiB,KAAOL,EAAKK,MAAQ,kBAC3BjB,EAAOkB,QAAUN,EAAKM,SAAW,OACjClB,EAAOmB,QAAQ,UAAWP,MAASA,EAAKO,MACxCnB,EAAOM,IAAMA,EAETM,EAAKQ,OAqBX,SAAuBpB,EAAQoB,GAC7B,IAAK,IAAIC,KAAQD,EACfpB,EAAOsB,aAAaD,EAAMD,EAAMC,GAEpC,CAxBIE,CAAcvB,EAAQY,EAAKQ,OAGzBR,EAAKY,OACPxB,EAAOwB,KAAO,GAAKZ,EAAKY,OAGd,WAAYxB,EAASD,EAAWQ,GACtCP,EAAQC,GAKTD,EAAOE,QACVH,EAASC,EAAQC,GAGnBY,EAAKY,YAAYzB,EACnB,C","sources":["webpack://Kristiania.Web/./node_modules/load-script/index.js"],"sourcesContent":["\nmodule.exports = function load (src, opts, cb) {\n var head = document.head || document.getElementsByTagName('head')[0]\n var script = document.createElement('script')\n\n if (typeof opts === 'function') {\n cb = opts\n opts = {}\n }\n\n opts = opts || {}\n cb = cb || function() {}\n\n script.type = opts.type || 'text/javascript'\n script.charset = opts.charset || 'utf8';\n script.async = 'async' in opts ? !!opts.async : true\n script.src = src\n\n if (opts.attrs) {\n setAttributes(script, opts.attrs)\n }\n\n if (opts.text) {\n script.text = '' + opts.text\n }\n\n var onend = 'onload' in script ? stdOnEnd : ieOnEnd\n onend(script, cb)\n\n // some good legacy browsers (firefox) fail the 'in' detection above\n // so as a fallback we always set onload\n // old IE will ignore this and new IE will set onload\n if (!script.onload) {\n stdOnEnd(script, cb);\n }\n\n head.appendChild(script)\n}\n\nfunction setAttributes(script, attrs) {\n for (var attr in attrs) {\n script.setAttribute(attr, attrs[attr]);\n }\n}\n\nfunction stdOnEnd (script, cb) {\n script.onload = function () {\n this.onerror = this.onload = null\n cb(null, script)\n }\n script.onerror = function () {\n // this.onload = null here is necessary\n // because even IE9 works not like others\n this.onerror = this.onload = null\n cb(new Error('Failed to load ' + this.src), script)\n }\n}\n\nfunction ieOnEnd (script, cb) {\n script.onreadystatechange = function () {\n if (this.readyState != 'complete' && this.readyState != 'loaded') return\n this.onreadystatechange = null\n cb(null, script) // there is no way to catch loading errors in IE8\n }\n}\n"],"names":["stdOnEnd","script","cb","onload","this","onerror","Error","src","ieOnEnd","onreadystatechange","readyState","module","exports","opts","head","document","getElementsByTagName","createElement","type","charset","async","attrs","attr","setAttribute","setAttributes","text","appendChild"],"sourceRoot":""}