Skip to main content

Empower Dev

Log in

Lost password?

Some courses may allow guest access

Contact site support
You are not logged in.
Data retention summary
/* =============================== HIDE INPUT-GROUP FOR NON-ADMINS =============================== */ const hideInputGroup = () => { document .querySelectorAll('.editmode-switch-form .input-group') .forEach(el => { el.style.display = isAdmin ? '' : 'none'; }); }; hideInputGroup(); const editObserver = new MutationObserver(hideInputGroup); editObserver.observe(document.body, { childList: true, subtree: true }); });
Powered by Moodle