Italian translation #1874

Open
ghost wants to merge 318 commits from master into i18n
86 changed files with 976 additions and 713 deletions
Showing only changes of commit c4b0c4ed23 - Show all commits

View File

@ -25,7 +25,11 @@ function navSectionsToggle() {
function navSectionsClose(event) {
// Hide all dropdowns when clicking in different place
if (event.target.matches(".nav-summary")) return;
if (
event.target.matches(".nav-summary") ||
event.target.parentNode.matches(".nav-summary")
)
return;
navSections.forEach(navSection => {
navSection.open = !open;
});