You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the KindleFire HD, when the menu is the full horizontal menu, if you expand a drop down menu it will display then disappear on first click. But when you click it a second time then it will stay visible. When in responsive mode, the menu works perfect.
The text was updated successfully, but these errors were encountered:
Hi @jasonalls ,
i had the same problem on devices of Apple. My solution for your problem in jquery.flexnav.js on line 124:
Comment or delete the following line:
// $(this).parent('.item-with-ul').siblings().find('ul.flexnav-show').removeClass('flexnav-show').hide();
and paste the following code:
$(this).siblings('ul.flexnav-show').removeClass('flexnav-show').hide();
On the KindleFire HD, when the menu is the full horizontal menu, if you expand a drop down menu it will display then disappear on first click. But when you click it a second time then it will stay visible. When in responsive mode, the menu works perfect.
The text was updated successfully, but these errors were encountered: