Close nextcloud menu on blur page

Simó Albert i Beltran 2022-01-21 07:57:25 +01:00
parent 9fef100750
commit b3eb5c298c
1 changed files with 3 additions and 0 deletions

View File

@ -24,4 +24,7 @@ jQuery(document).ready(() => {
$('#dropdownMenuApps').hide()
}
})
$(window).blur( (event) => {
$('#dropdownMenuApps').hide()
})
})