This setup is available in "admin/config/user-interface/megamenu" in "Advanced Settings" section.
Bug description:
When modify values only "Menu Timeout" value is used and "Menu Size Wait" and "Menu Hover Wait" are IGNORED.
Solution:
There is wrong code in "megamenu.module":
#25| $timeout = variable_get('megamenu_menu_timeout',500);
#26| $sizewait = variable_get('megamenu_menu_timeout',500);
#27| $hoverwait = variable_get('megamenu_menu_timeout',500);
and should be:
#25| $timeout = variable_get('megamenu_menu_timeout',500);
#26| $sizewait = variable_get('megamenu_menu_sizewait',500);
#27| $hoverwait = variable_get('megamenu_menu_hoverwait',500);
This is mistake in my style. :]
I'm not programmer but Ill try to make a patch.
Comments
Comment #1
mattez commentedHere in PATCH
Comment #2
mattez commentedIt's now FIXED
Comment #4
Rob_Feature commentedActually this is not fixed. Let the maintainer mark it as fixed in the module. Current versions of the modules still have this problem. Reopening to alert the maintainer of this patch. Marking as major since it's a core setting that's broken.
Comment #5
Anonymous (not verified) commentedComment #6
Anonymous (not verified) commentedCommitted in 7.x-1.x in db3adbc