summaryrefslogtreecommitdiffstats
path: root/core/js
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2016-08-10 00:28:04 +0200
committerGitHub <noreply@github.com>2016-08-10 00:28:04 +0200
commit7e23351bf0a71c2e53a53a7742c7e84f4a06e2ec (patch)
treea9e6230af3fb1cbfae8defac7f3e302fedf83808 /core/js
parent9fbdb0efe895f7cfe03f613cc6fa5daee9f99dfe (diff)
parent6b807af619cd3b531213bc312749f46a82bc5075 (diff)
downloadnextcloud-server-7e23351bf0a71c2e53a53a7742c7e84f4a06e2ec.tar.gz
nextcloud-server-7e23351bf0a71c2e53a53a7742c7e84f4a06e2ec.zip
Merge pull request #677 from nextcloud/app-menu-fix
Fix closing app menu on mobile
Diffstat (limited to 'core/js')
-rw-r--r--core/js/js.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/js/js.js b/core/js/js.js
index d2bbbae6362..4e8d3a01416 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -1574,6 +1574,10 @@ function initCore() {
$target.closest('.app-navigation-noclose').length) {
return;
}
+ if($target.is('.app-navigation-entry-utils-menu-button') ||
+ $target.closest('.app-navigation-entry-utils-menu-button').length) {
+ return;
+ }
if($target.is('.add-new') ||
$target.closest('.add-new').length) {
return;