Closed (fixed)
Project:
JQuery menu
Version:
7.x-4.0-alpha3
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
10 Mar 2013 at 02:05 UTC
Updated:
14 Oct 2014 at 11:20 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
mmn commentedComment #2
pat redmond commentedI think this is what is causing the problem! Excellent work. This is the bug which has stopped me marking this as a stable release, so thanks for your work!!
I will add it to the next release, which will be 7.x-4.0-alpha4. If the issue disappears then we will have 7.x-4.0
Comment #3
swamydrupal commentedthis patch not works for me. I tested with firefox and chrome
Comment #4
dimetry commentedI think it may be some error in patch.
Just delete excess quotes (any text editor can help) in jquerymenu.module file:
WRONG (old):
'visibility' => 'BLOCK_VISIBILITY_NOTLISTED',
'cache' => 'DRUPAL_NO_CACHE'
RIGHT (new):
'visibility' => BLOCK_VISIBILITY_NOTLISTED,
'cache' => DRUPAL_NO_CACHE
It's worked for me.
Comment #5
DeFr commentedThis was pushed in the module as 8d24a2 in March 2013. Marking fixed accordingly.