Skip to content
- Choosing a selection results in a full page refresh.
- Opens in a new window.
function updateHeight() {
var announcementAppHeight = $('#fsb_container')?.height();
document.documentElement.style.setProperty('--announcement-height-app', announcementAppHeight+'px');
}
window.addEventListener('resize', updateHeight);
setTimeout(function() {
updateHeight();
}, 2000);