{"version":3,"sources":["webpack:///./Scripts/Components/HeroBlock.js"],"names":["setParentHeight","parent","document","getElementsByClassName","i","length","parentTochange","childdivNode","children","j","className","match","childDiv","newHeight","screenWidth","window","innerWidth","childHeight","offsetHeight","parentHeight","style","height","addEventListener","event"],"mappings":"iEAAA,SAASA,IACL,MAGMC,EAASC,SAASC,uBAAuB,wBAE/C,IAAK,IAAIC,EAAI,EAAGA,EAAIH,EAAOI,OAAQD,IAAK,CACpC,IAAIE,EAAiBL,EAAOG,GACxBG,EAAeD,EAAeE,SAElC,IAAK,IAAIC,EAAI,EAAGA,EAAIF,EAAaF,OAAQI,IACrC,GAAIF,EAAaE,GAAGC,UAAUC,MAAM,wCAAyC,CACzE,IAAIC,EAAWL,EAAaE,GACxBI,EAAY,EACZC,EAAcC,OAAOC,WACrBC,EAAc,EAElBA,EAAcL,EAASM,aACvB,IAAIC,EAAe,EACfL,EAlBO,KAmBPK,EAAeF,EAAc,IAC7BJ,EAAYM,EAlBE,IAkBqCA,EAlBrC,IAmBdb,EAAec,MAAMC,OAASF,EAAe,OAE7CA,EAAeF,EAAc,IAC7BJ,EAAYM,EAvBG,IAuBqCA,EAvBrC,IAwBfb,EAAec,MAAMC,OAASF,EAAe,KAErD,CAER,CACJ,CAEAJ,OAAOO,iBAAiB,QAASC,IAC7BvB,GAAiB,IAGrBe,OAAOO,iBAAiB,UAAWC,IAC/BvB,GAAiB,G","file":"100.f067421f110a41fdb3fd.js","sourcesContent":["function setParentHeight() {\r\n const mobileMaxWidth = 640;\r\n const minparentHeightDesktop = 490;\r\n const minparentHeightMobile = 394;\r\n const parent = document.getElementsByClassName(\"hero-block-container\");\r\n\r\n for (let i = 0; i < parent.length; i++) {\r\n let parentTochange = parent[i];\r\n let childdivNode = parentTochange.children;\r\n\r\n for (let j = 0; j < childdivNode.length; j++) {\r\n if (childdivNode[j].className.match(\"hero-block-container__data-container\")) {\r\n let childDiv = childdivNode[j];\r\n let newHeight = 0;\r\n let screenWidth = window.innerWidth;\r\n let childHeight = 0;\r\n\r\n childHeight = childDiv.offsetHeight;\r\n let parentHeight = 0;\r\n if (screenWidth < mobileMaxWidth) {\r\n parentHeight = childHeight + 130;\r\n newHeight = parentHeight > minparentHeightMobile ? parentHeight : minparentHeightMobile;\r\n parentTochange.style.height = parentHeight + 'px';\r\n } else {\r\n parentHeight = childHeight + 200;\r\n newHeight = parentHeight > minparentHeightDesktop ? parentHeight : minparentHeightDesktop;\r\n parentTochange.style.height = parentHeight + 'px';\r\n }\r\n }\r\n }\r\n }\r\n}\r\n\r\nwindow.addEventListener(\"load\", (event) => {\r\n setParentHeight();\r\n});\r\n\r\nwindow.addEventListener(\"resize\", (event) => {\r\n setParentHeight();\r\n});\r\n\r\n"],"sourceRoot":""}