{"version":3,"sources":["webpack:///./Scripts/Components/ShortCut.js"],"names":["chcekOverFlow","document","querySelector","divElement","scrollHeight","clientHeight","scrollWidth","clientWidth","classList","contains","remove","add","window","onload","addEventListener"],"mappings":"iEAQA,SAASA,IACL,GAAIC,SAASC,cAAc,uBAAwB,CAC/C,MAAMC,EAAaF,SAASC,cAAc,uBACtBC,EAAWC,aAAeD,EAAWE,cAAgBF,EAAWG,YAAcH,EAAWI,YAErGJ,EAAWK,UAAUC,SAAS,oCAC9BN,EAAWK,UAAUE,OAAO,mCAGhCP,EAAWK,UAAUG,IAAI,kCAEjC,CACJ,CApBAC,OAAOC,OAAS,KACZb,GAAe,EAGnBY,OAAOE,iBAAiB,UAAU,KAC9Bd,GAAe,G","file":"501.67110938fc80302167e0.js","sourcesContent":["window.onload = () => {\r\n chcekOverFlow();\r\n};\r\n\r\nwindow.addEventListener(\"resize\", () => {\r\n chcekOverFlow();\r\n})\r\n\r\nfunction chcekOverFlow() {\r\n if (document.querySelector('.category-container')) {\r\n const divElement = document.querySelector('.category-container');\r\n const hasOverflow = divElement.scrollHeight > divElement.clientHeight || divElement.scrollWidth > divElement.clientWidth;\r\n if (hasOverflow) {\r\n if (divElement.classList.contains(\"category-container--no-overflow\")) {\r\n divElement.classList.remove(\"category-container--no-overflow\");\r\n }\r\n } else {\r\n divElement.classList.add(\"category-container--no-overflow\");\r\n }\r\n }\r\n}"],"sourceRoot":""}