From: Matthias Schmidt Date: Tue, 30 Jul 2013 15:18:35 +0000 (+0200) Subject: Fixes hiding of inline editor dropdown menu X-Git-Tag: 2.0.0_Beta_6~2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=21b088389df5a3f9d8e1a9cd3a05bfc5b419583b;p=GitHub%2FWoltLab%2FWCF.git Fixes hiding of inline editor dropdown menu --- diff --git a/wcfsetup/install/files/js/WCF.js b/wcfsetup/install/files/js/WCF.js index 580883189a..57b293e989 100755 --- a/wcfsetup/install/files/js/WCF.js +++ b/wcfsetup/install/files/js/WCF.js @@ -6462,7 +6462,7 @@ WCF.InlineEditor = Class.extend({ */ _hide: function(elementID) { if (this._dropdowns[elementID]) { - this._dropdowns[elementID].empty().parent('span').removeClass('dropdownOpen'); + this._dropdowns[elementID].empty().removeClass('dropdownOpen'); } } });