Skip to content

Commit cda5584

Browse files
authored
Fix Download> Plugins menu not clickable on mobile
1 parent 20a420a commit cda5584

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ jQuery(document).ready(function($) {
214214
// navigation
215215
var OnePageNavigation = function() {
216216
var navToggler = $('.site-menu-toggle');
217-
$("body").on("click", ".main-menu li a[href^='#'], .smoothscroll[href^='#'], .site-mobile-menu .site-nav-wrap li a", function(e) {
217+
$("body").on("click", ".main-menu li a[href^='#'], .smoothscroll[href^='#'], .site-mobile-menu .site-nav-wrap li a[href^='#']", function(e) {
218218
e.preventDefault();
219219

220220
var hash = this.hash;
@@ -248,4 +248,4 @@ jQuery(document).ready(function($) {
248248
};
249249
siteScroll();
250250

251-
});
251+
});

0 commit comments

Comments
 (0)