{"version":3,"sources":["util-height.js"],"names":["UtilHeight","constructor","this","setEvents","configureHeight","window","addEventListener","document","documentElement","style","setProperty","innerHeight"],"mappings":"qBAAqBA,WACjBC,cACIC,KAAKC,UAAU,EACfD,KAAKE,gBAAgB,CACzB,CAEAD,YACIE,OAAOC,iBAAiB,SAAUJ,KAAKE,eAAe,CAC1D,CAEAA,kBACgBG,SAASC,gBACjBC,MAAMC,YAAY,gBAAoBL,OAAOM,YAAV,IAAyB,CACpE,CACJ","file":"util-height.min.js","sourcesContent":["export default class UtilHeight {\r\n constructor() {\r\n this.setEvents();\r\n this.configureHeight();\r\n }\r\n\r\n setEvents() {\r\n window.addEventListener('resize', this.configureHeight);\r\n }\r\n\r\n configureHeight() {\r\n const doc = document.documentElement;\r\n doc.style.setProperty('--util-height', `${window.innerHeight}px`);\r\n }\r\n}"]}