From 6b807af619cd3b531213bc312749f46a82bc5075 Mon Sep 17 00:00:00 2001 From: Julius Haertl Date: Sun, 31 Jul 2016 11:57:03 +0200 Subject: [PATCH] Fix closing app menu on mobile --- core/js/js.js | 4 ++++ 1 file changed, 4 insertions(+) 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; -- 2.39.5