{"version":3,"sources":["webpack:///./modules/QuickFacts.ts"],"names":["__webpack_require__","r","__webpack_exports__","QuickFacts","element","this","limitTextContent","setup","selector","Array","from","document","querySelectorAll","filter","node","dataset","moduleInitialized","forEach","prototype","el","textContent","length","console","log","substr"],"mappings":"2FAAAA,EAAAC,EAAAC,GAAA,IAEAC,EAAA,WAQI,SAAAA,EAAmBC,GAAAC,KAAAD,UACfC,KAAKC,mBAmBb,OA3BWH,EAAAI,MAAP,SAAaC,QAAA,IAAAA,MAHM,8BAIfC,MAAMC,KAAKC,SAASC,iBAAiBJ,IAAWK,OAAO,SAACC,GAAsB,OAACA,EAAKC,QAAQC,oBAAmBC,QAAQ,SAACb,GACpH,IAAID,EAAWC,GACfA,EAAQW,QAAQC,kBAAoB,UAQpCb,EAAAe,UAAAZ,iBAAR,WACyBD,KAAKD,QAAQQ,iBAAiB,sCACtCK,QAAQ,SAACE,GACdA,EAAGC,YAAYC,QAAU,KACzBC,QAAQC,IAAI,QACZJ,EAAGC,YAAcD,EAAGC,YAAYI,OAAO,EAAG,OAI7BnB,KAAKD,QAAQQ,iBAAiB,qCACtCK,QAAQ,SAACE,GACdA,EAAGC,YAAYC,QAAU,MACzBF,EAAGC,YAAcD,EAAGC,YAAYI,OAAO,EAAG,KAAO,UAIjErB,EA5BA,eA8BA,IAAIA,EAAWI,MAgBX,IAAIJ,EAAWI,MAhDI","file":"./modules/QuickFacts.d8ad1be4.js","sourcesContent":["const moduleSelector = '[data-module=\"QuickFacts\"]';\r\n\r\nexport default class QuickFacts {\r\n static setup(selector: string = moduleSelector): void {\r\n Array.from(document.querySelectorAll(selector)).filter((node: HTMLElement) => !node.dataset.moduleInitialized).forEach((element: HTMLElement) => {\r\n new QuickFacts(element);\r\n element.dataset.moduleInitialized = 'true';\r\n });\r\n }\r\n\r\n constructor(public element: HTMLElement) {\r\n this.limitTextContent();\r\n }\r\n\r\n private limitTextContent(): void {\r\n const benefitTitle = this.element.querySelectorAll('.career-facelift .cw-benefit-title');\r\n benefitTitle.forEach((el: Element) => {\r\n if (el.textContent.length >= 22) {\r\n console.log(\"true\")\r\n el.textContent = el.textContent.substr(0, 22);\r\n }\r\n });\r\n\r\n const textElements = this.element.querySelectorAll('.career-facelift .cw-benefit-text');\r\n textElements.forEach((el: Element) => {\r\n if (el.textContent.length >= 101) {\r\n el.textContent = el.textContent.substr(0, 100) + \"...\" ;\r\n }\r\n });\r\n }\r\n}\r\n\r\nnew QuickFacts.setup();\r\n\r\n\r\n// Hot Module Replacement\r\nif (module.hot) {\r\n let nodesCache: HMRNodes[] = Array.from(document.querySelectorAll(moduleSelector)).map((element: Node) => ({ nodeToReplace: element, nodeOrigin: element.cloneNode(true) }));\r\n\r\n new QuickFacts.setup(moduleSelector);\r\n\r\n module.hot.accept(() => {\r\n new QuickFacts.setup(moduleSelector);\r\n });\r\n module.hot.dispose(() => {\r\n nodesCache.forEach(({ nodeToReplace, nodeOrigin }) => { nodeToReplace = nodeToReplace.parentElement.replaceChild(nodeOrigin.cloneNode(true), nodeToReplace) });\r\n });\r\n} else {\r\n new QuickFacts.setup(moduleSelector);\r\n}"],"sourceRoot":""}