1 // https://civicrm.org/licensing
5 $(document
).on('crmLoad', '#civicrm-menu', hideMenuToggleButtonForNonAdminUsers
);
8 * Hides the Menu Toggle Button when the Admin Menu is not available for the user.
10 function hideMenuToggleButtonForNonAdminUsers() {
11 $(document
).ready(function() {
12 if (!$('#toolbar').length
) {
13 CRM
.menubar
.removeToggleButton();