The drop downs weren't showing on hover when I was on a basic page. In the attach() function I had to change the first 2 jQuery selectors.

Before:
$('ul.jquerymenu .open').parents('li').removeClass('closed').addClass('open');
$('ul.jquerymenu .open').parents('li').children('span.parent').removeClass('closed').addClass('open').slideDown('700');

After:
$('ul.jquerymenu .closed').parents('li').removeClass('closed').addClass('open');
$('ul.jquerymenu .closed').parents('li').children('span.parent').removeClass('closed').addClass('open').slideDown('700');

After making the change the dropdowns worked on all pages.

Comments

jlea9378’s picture

Issue summary: View changes

For me this actually made things worse... it made them always expanded. However, in neither case did the hover effect work, even though it is turned on in the module config...

jlea9378’s picture