Skip to content

Commit

Permalink
Fix Download> Plugins menu not clickable on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
joserobjr authored Apr 14, 2022
1 parent 20a420a commit cda5584
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ jQuery(document).ready(function($) {
// navigation
var OnePageNavigation = function() {
var navToggler = $('.site-menu-toggle');
$("body").on("click", ".main-menu li a[href^='#'], .smoothscroll[href^='#'], .site-mobile-menu .site-nav-wrap li a", function(e) {
$("body").on("click", ".main-menu li a[href^='#'], .smoothscroll[href^='#'], .site-mobile-menu .site-nav-wrap li a[href^='#']", function(e) {
e.preventDefault();

var hash = this.hash;
Expand Down Expand Up @@ -248,4 +248,4 @@ jQuery(document).ready(function($) {
};
siteScroll();

});
});

0 comments on commit cda5584

Please sign in to comment.