diff options
author | Julius Haertl <jus@bitgrid.net> | 2016-07-31 11:57:03 +0200 |
---|---|---|
committer | Julius Haertl <jus@bitgrid.net> | 2016-07-31 11:57:03 +0200 |
commit | 6b807af619cd3b531213bc312749f46a82bc5075 (patch) | |
tree | 890bc29326bf4b2e8fd070ee44107594be43e610 | |
parent | 3b386af295fdd5ea986edd4447637043f69b4c38 (diff) | |
download | nextcloud-server-6b807af619cd3b531213bc312749f46a82bc5075.tar.gz nextcloud-server-6b807af619cd3b531213bc312749f46a82bc5075.zip |
Fix closing app menu on mobile
-rw-r--r-- | core/js/js.js | 4 |
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; |