Active
Project:
SimpleMenu
Version:
6.x-1.9
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Anonymous (not verified)
Created:
31 Oct 2010 at 23:45 UTC
Updated:
10 Nov 2018 at 22:52 UTC
If both the Wysiwyg Image Upload and SimpleMenu modules are enabled, the SimpleMenu will be erroneously visible, covering the top section of the upload/browse dialog.
Might be a bug in SimpleMenu or JQuery UI Dialog, feel free to move this issue.
Anyway, for the record, a workaround is to add "*wysiwyg_imageupload*form-*" to the blacklist in the advanced settings of SimpleMenu.
This might be a hint: http://www.m2osw.com/doc_simplemenu_popup
Comments
Comment #1
eugenmayer commentedWell its actually no bug, just a missing feature in Drupal in general. There is no general supression-hook for "popups". Thats why modules like admin_menu or devel provide supression hooks. WUI implementes them, so they are not shown in the dialog:
http://github.com/EugenMayer/jquery_ui_dialog/blob/master/jquery_ui_dial...
You see that i alrady provide a hook in jquery_ui_dialog which is called when a child ( popup ) is loaded. What simple menu can do, is implementing that hook and dont load the simplemenu, when the hook gets called.
Alternativly it can provide those suppression hooks like is use to hide admin_menu in that hook (jquery_ui_dialog is implementing this hook also )