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
Maybe not best solution... in fixed-responsive-nav.js, in logo click event listener add one line:
// Select the right navigation item when tapping the logo
document.querySelector(".logo").addEventListener("click", function (e) {
e.preventDefault();
wasNavigationTapped = true;
// Select first navigation item
selectActiveMenuItem(0);
if($(".nav-toggle").css("display") != "none")
// Close navigation
navigation.close();
...
Tested on https://www.adtile.me/fixed-nav/
The text was updated successfully, but these errors were encountered: