Dropdown menu OJS3 doesn't respond on iOS devices

Adding a few lines of script to main.js will solve this:

// Dropdownmenus clickable and working *Frankl1nx*
$('.navDropdownMenu li ul li a').on('touchstart', function(e) {
    var href = $(this).attr('href');
    location.href = href;})

themes > default > js > main.js