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

eugenmayer’s picture

Title: Icompatibility with SimpleMenu » Suppression hook / think about popups
Project: WYSIWYG image upload - Inline images for your WYSIWYG » SimpleMenu
Version: 6.x-2.4 » 6.x-1.9
Component: User interface » Code
Category: bug » feature

Well 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 )