Ambiera ForumDiscussions, Help and Support. |
|
|
|||||
|
“I have a question about the side menu. When I click on a link, the menu stays open. This is very confusing and inconvenient. All links point to anchor points within the project.” |
||||
|
Edit It works with a JS block containing the content. Perhaps you could offer it as an option in the menu in case of need. // nach document.body.appendChild(sidebar); sidebar.querySelectorAll("a").forEach(function(link) { link.addEventListener("click", function() { closesidebarMenu(); }); }); |
||||
|
Good addition, will add something like this in a next update of the menu, thx! |
||||
|
|