{"version":3,"file":"js/common.4c70002a.js","mappings":";YAgBAA,OAAOC,0BAA4B,SAClCC,EACAC,GAGwBC,SAASC,iBAChCF,GAIeG,SAAQ,SAAUC,GAEjC,MAAMC,EAAiBD,EAAeE,cACrCP,GAGD,GAAIM,EAAgB,CAEnB,MAAME,EAASV,OAAOW,iBAAiBH,GAGjCI,EACLC,WAAWH,EAAOI,QAAU,EAAID,WAAWH,EAAOK,WAGnDR,EAAeS,MAAMF,OAASF,EAAW,IAC1C,CACD,GACD,EAKAR,SAASa,iBAAiB,oBAAoB,WAG7ChB,0BACC,sCACA,sCAEF,IAKAD,OAAOiB,iBAAiB,UAAU,WAGjChB,0BACC,sCACA,sCAEF,IAwBsCG,SAASC,iBAC9C,6BAM6BC,SAASY,IAQtCA,EAAOC,aAAa,gBAAiB,QAAQ,IAI9Cf,SAASC,iBAAiB,kBAAkBC,SAASc,IAEpD,MAAMC,EAAkBD,EAAUX,cACjC,6BAIKa,EAAmBF,EAAUf,iBAAiB,qBAGpDgB,EAAgBJ,iBAAiB,SAAUM,IAE1C,MAAMC,EAAcD,EAAME,OAAOC,aAAa,iBAG9C,IAAIC,EAOA,UAAYH,GACfD,EAAME,OAAOG,UAAY,eACzBD,EAAiB,SAEjBJ,EAAME,OAAOG,UAAY,aACzBD,EAAiB,SAGlBJ,EAAME,OAAON,aAAa,gBAAiBQ,GAG3CL,EAAiBhB,SAASY,IAMrBA,EAAOQ,aAAa,mBAAqBF,GAE5CN,EAAOW,OACR,GACC,GACD","sources":["webpack://BSUwp/./assets/src/js/common/common.js"],"sourcesContent":["/*!\n * The Main Custom Common JS (loads in footer of both the frontend and the backend)\n */\n\n/*\n * **\n * Begin functionality for auto height adjustments.\n * **\n */\n\n/*\n * Adjusts the height of a container element to match the height of its inner element.\n *\n * @param {string} innerContainerElementClass The CSS class of the inner element.\n * @param {string} outerContainerElementClass The CSS class of the outer element.\n */\nwindow.autoAdjustContainerHeight = function (\n\tinnerContainerElementClass,\n\touterContainerElementClass\n) {\n\t// Select all elements with the specified CSS class for outer containers\n\tconst outerContainers = document.querySelectorAll(\n\t\touterContainerElementClass\n\t);\n\n\t// Loop through each outer container element\n\touterContainers.forEach(function (outerContainer) {\n\t\t// Find the first inner container element within the current outer container\n\t\tconst innerContainer = outerContainer.querySelector(\n\t\t\tinnerContainerElementClass\n\t\t);\n\n\t\tif (innerContainer) {\n\t\t\t// Get the computed styles of the inner container element\n\t\t\tconst styles = window.getComputedStyle(innerContainer);\n\n\t\t\t// Calculate the total height of the outer container, including margins\n\t\t\tconst elHeight =\n\t\t\t\tparseFloat(styles.height) + 2 * parseFloat(styles.marginTop);\n\n\t\t\t// Set the height of the outer container to match the calculated height\n\t\t\touterContainer.style.height = elHeight + 'px';\n\t\t}\n\t});\n};\n\n/*\n * Event listener for when the DOM is loaded, used to adjust the height of the outer container.\n */\ndocument.addEventListener('DOMContentLoaded', function () {\n\t// The function is globally scoped.\n\t// eslint-disable-next-line no-undef\n\tautoAdjustContainerHeight(\n\t\t'.bsu-dynamic-height-inner-container',\n\t\t'.bsu-dynamic-height-outer-container'\n\t);\n});\n\n/*\n * Event listener for when the window is resized, used to adjust the height of the outer container.\n */\nwindow.addEventListener('resize', function () {\n\t// The function is globally scoped.\n\t// eslint-disable-next-line no-undef\n\tautoAdjustContainerHeight(\n\t\t'.bsu-dynamic-height-inner-container',\n\t\t'.bsu-dynamic-height-outer-container'\n\t);\n});\n\n/*\n * **\n * End functionality for auto height adjustments.\n * **\n */\n\n/*\n * **\n * Begin functionality for accordion expanding and collapsing all accordion items\n * **\n */\n\n/**\n * Handles the toggle all button interacion for accordions.\n *\n * If JS is disabled there is a