Unlike the #2829480: Allow off canvas menu on admin routes I believe the responsive menu is useful only for visitors that use tablets or mobile devices and that it should be turned off by default on all admin pages, including node create and node edit pages. Just think - if some admin/editor is creating or editing node pages then most probably s/he is doing that using wide screen device like laptop or desktop as it is really inconvenient to create or edit nodes through smaller devices like cell phones. And even if someone really needs to create or edit nodes using their tablets or phones then s/he doesn't need the responsive menu for that. So there is really no point of loading responsive menu on node create or edit pages.
I see the following line from the module could be hooked in a custom module:
/**
* Implements hook_page_build().
*/
function responsive_menu_page_build(&$page) {
if (path_is_admin(current_path())) {
return;
}
however, I propose to make the option to turn on or off the module on admin and node create and edit pages "officially" on the module's settings page.
Comments
Comment #2
tancI think what you're asking is a reasonable feature request, I'll take a look at implementing at some point.
Comment #3
tancThis is an old feature request for the D7 version and I'm not adding new features to that version anymore. The 4.x.x D8/9 version already includes this feature