Skip to main content

AUGMET Center for Excellence

Log in

Lost password?
Contact site support
You are not logged in.
const openDrawer = () => { const drawer = document.getElementById("theme_boost-drawers-courseindex"); const button = document.querySelector( 'button[data-target="theme_boost-drawers-courseindex"][data-action="toggle"]' ); if (!drawer || !button) return; if (!drawer.classList.contains("show")) { button.click(); drawerObserver.disconnect(); } }; const drawerObserver = new MutationObserver(openDrawer); drawerObserver.observe(document.body, { childList: true, subtree: true }); });
Powered by Moodle