From: Alexander Ebert Date: Mon, 4 May 2015 12:28:46 +0000 (+0200) Subject: Fixed function declaration X-Git-Tag: 3.0.0_Beta_1~2414 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=dcf6e11ee49c2476e56471847a47765e062879c3;p=GitHub%2FWoltLab%2FWCF.git Fixed function declaration --- diff --git a/wcfsetup/install/files/js/WoltLab/WCF/UI/FlexibleMenu.js b/wcfsetup/install/files/js/WoltLab/WCF/UI/FlexibleMenu.js index 91596137d0..1d34365218 100644 --- a/wcfsetup/install/files/js/WoltLab/WCF/UI/FlexibleMenu.js +++ b/wcfsetup/install/files/js/WoltLab/WCF/UI/FlexibleMenu.js @@ -13,7 +13,7 @@ define(['Core', 'Dictionary', 'DOM/Traverse', 'DOM/Util', 'UI/SimpleDropdown'], /** * @constructor */ - var UIFlexibleMenu = function() { + function UIFlexibleMenu() { this._containers = new Dictionary(); this._dropdowns = new Dictionary(); this._dropdownMenus = new Dictionary(); @@ -199,4 +199,4 @@ define(['Core', 'Dictionary', 'DOM/Traverse', 'DOM/Util', 'UI/SimpleDropdown'], }; return new UIFlexibleMenu(); -}); \ No newline at end of file +});