{"version":3,"sources":["webpack://@verndale/toolkit/./src/js/modules/homepage-masthead.js"],"names":["Module","Component"],"mappings":"2JAEA,MAAMA,UAAeC,WAAU,CAC7B,eAAgB,CACd,KAAK,IAAM,CACT,kBAAmB,KAAK,GAAG,GAAG,iCAAiC,EAC/D,iBAAkB,KAAK,GAAG,GAAG,yCAAyC,CACxE,EAGA,KAAK,eAAe,CACtB,CAEA,cAAe,CACX,KAAK,IAAI,kBAAkB,iBAAiB,QAAS,KAAK,eAAe,KAAK,IAAI,CAAC,CACvF,CAEA,gBAAgB,CACd,KAAK,IAAI,kBAAkB,UAAU,OAAO,QAAQ,EAChD,KAAK,IAAI,iBAAiB,MAAM,UAAY,SAC9C,KAAK,IAAI,iBAAiB,MAAM,QAAU,OAC1C,KAAK,IAAI,iBAAiB,aAAa,cAAe,MAAM,IAE5D,KAAK,IAAI,iBAAiB,MAAM,QAAU,QAC1C,KAAK,IAAI,iBAAiB,aAAa,cAAe,OAAO,EAEjE,CACF,CAEA,UAAeD,C","file":"Areas/SunriseSeniorLiving/Scripts/902.6cd78c5d4315dbb9665d.bundle.js","sourcesContent":["import { Component } from '@verndale/core';\n\nclass Module extends Component {\n setupDefaults() {\n this.dom = {\n $locationCollapse: this.el._$('.homepage-masthead__collapsible'),\n $locationContent: this.el._$('.homepage-masthead__collapsible-content')\n };\n\n // open by default\n this.handleCollapse();\n }\n\n addListeners() {\n this.dom.$locationCollapse.addEventListener('click', this.handleCollapse.bind(this));\n }\n\n handleCollapse(){\n this.dom.$locationCollapse.classList.toggle('active');\n if (this.dom.$locationContent.style.display === 'block') {\n this.dom.$locationContent.style.display = 'none';\n this.dom.$locationContent.setAttribute('aria-hidden', 'true');\n } else {\n this.dom.$locationContent.style.display = 'block';\n this.dom.$locationContent.setAttribute('aria-hidden', 'false');\n }\n }\n}\n\nexport default Module;\n"],"sourceRoot":""}