From: Marcel Werk Date: Fri, 26 Aug 2016 15:34:48 +0000 (+0200) Subject: Fixed initialization of message buttons (mobile) X-Git-Tag: 3.0.0_Beta_1~470 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=8720ec096764a9b70e52039502322acaddd87add;p=GitHub%2FWoltLab%2FWCF.git Fixed initialization of message buttons (mobile) --- diff --git a/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/Mobile.js b/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/Mobile.js index e6dbdb9980..9715ef98cf 100644 --- a/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/Mobile.js +++ b/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/Mobile.js @@ -93,7 +93,10 @@ define( this._initMobileMenu(); UiCloseOverlay.add('WoltLabSuite/Core/Ui/Mobile', this._closeAllMenus.bind(this)); - DomChangeListener.add('WoltLabSuite/Core/Ui/Mobile', this._initButtonGroupNavigation.bind(this)); + DomChangeListener.add('WoltLabSuite/Core/Ui/Mobile', (function() { + this._initButtonGroupNavigation(); + this._initMessages(); + }).bind(this)); if (_messageGroups) this.rebuildShadow(_messageGroups, '.messageGroupLink'); },