From ab57bfdd0ea1822c5936b7c2d674a549d04f72a4 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Wed, 24 Aug 2016 23:03:19 +0200 Subject: [PATCH] Fixed emulated dropdowns on mobile --- wcfsetup/install/files/js/WoltLabSuite/Core/Ui/Mobile.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/Mobile.js b/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/Mobile.js index ef2aa24011..a7fea44cfc 100644 --- a/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/Mobile.js +++ b/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/Mobile.js @@ -171,6 +171,11 @@ define( if (navigation) { navigation.addEventListener(WCF_CLICK_EVENT, function(event) { event.stopPropagation(); + + // mimic dropdown behavior + window.setTimeout(function () { + navigation.classList.remove('open'); + }, 10); }); } -- 2.20.1