Wow, really “nice” feature you have installed here. Preventing a normal click on a menu for desktop user (on mobile it works great). Why this? I don’t get it.
Different people seem to have the same issue and still no solution, no hint how to change it?
Well, we can help each other here… I found a hacky solution, which sure gonna be override with the next update, but:
search for the topMenu: function ()
in js/script.min.js
file. You gonna see something like this:
d.children("i.sub-mark, span.title, .top-menu li a").on("click keydown", function (e) {
if ("keydown" !== e.type || -1 !== [13, 32].indexOf(e.keyCode)) {
e.stopPropagation(), e.preventDefault();
Now remove , e.preventDefault()
.
You also might want to rename .top-menu li a
to something else in order to open the dropdown menu only by click on the arrow.
-
This reply was modified 2 years, 7 months ago by
cokanh.