{"version":3,"sources":["webpack:///./src/js/modules/insightRelatedArticleV2.js"],"names":["Module","this","dom","article","el","querySelector","content","media","init","window","addEventListener","bind","height","offsetHeight","style","maxHeight","opacity","Component"],"mappings":"0oBAEMA,E,ieAEFC,KAAKC,IAAM,CACTC,QAASF,KAAKG,GAAGC,cAAc,gCAC/BC,QAASL,KAAKG,GAAGC,cAAc,wCAC/BE,MAAON,KAAKG,GAAGC,cAAc,uCAG/BJ,KAAKO,S,qCAILC,OAAOC,iBAAiB,SAAUT,KAAKO,KAAKG,KAAKV,S,6BAIjD,IAAMW,EACJX,KAAKC,IAAII,QAAQO,aAA6C,GAA9BZ,KAAKC,IAAIK,MAAMM,aACjDZ,KAAKC,IAAIC,QAAQW,MAAMC,UAAeH,EAAtC,KACAX,KAAKG,GAAGU,MAAME,QAAU,M,GArB5B,MAEqBC,W,UAuBNjB","file":"56.e55ef24ba0841df26249.js","sourcesContent":["import { Component } from '@verndale/core';\n\nclass Module extends Component {\n setupDefaults() {\n this.dom = {\n article: this.el.querySelector('.related-article__content-v2'),\n content: this.el.querySelector('.expertise-landing-masthead__content'),\n media: this.el.querySelector('.expertise-landing-masthead__media')\n };\n\n this.init();\n }\n\n addListeners() {\n window.addEventListener('resize', this.init.bind(this));\n }\n\n init() {\n const height =\n this.dom.content.offsetHeight + this.dom.media.offsetHeight * 0.5;\n this.dom.article.style.maxHeight = `${height}px`;\n this.el.style.opacity = 1;\n }\n}\n\nexport default Module;\n"],"sourceRoot":""}