fixed clicking links in sidebar

This commit is contained in:
Andreas Gohr 2017-02-23 09:52:02 +01:00
commit 1b74bdc158

View file

@ -104,7 +104,7 @@ jQuery(function () {
* Initialize the open/close toggling of menu entries
*/
const initMenuHandling = function () {
$nav.on('click', 'a', function (e) {
$nav.on('click', 'a.nav', function (e) {
toggleNav(jQuery(this));
e.preventDefault();
});