Skip to main content

Neuberg Empower

Log in

Lost password?

Log in using your account on:

Neuberg NeubergGlobal
Contact site support
You are not logged in.
/* =============================== 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