From: Alexander Ebert Date: Thu, 11 Dec 2014 16:06:39 +0000 (+0100) Subject: Hide loading overlay for user panel requests X-Git-Tag: 2.1.0_Beta_1~74 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=fc15ec88abcbea2ffcab4dda460bd5655da04832;p=GitHub%2FWoltLab%2FWCF.git Hide loading overlay for user panel requests --- diff --git a/wcfsetup/install/files/js/WCF.User.js b/wcfsetup/install/files/js/WCF.User.js index 09c590ea60..db32cf5e93 100644 --- a/wcfsetup/install/files/js/WCF.User.js +++ b/wcfsetup/install/files/js/WCF.User.js @@ -177,6 +177,7 @@ WCF.User.Panel.Abstract = Class.extend({ this._options = options; this._proxy = new WCF.Action.Proxy({ + showLoadingOverlay: false, success: $.proxy(this._success, this) }); @@ -345,7 +346,7 @@ WCF.User.Panel.Abstract = Class.extend({ if (count) { if (this._badge === null) { - this._badge = $('').appendTo(this._triggerElement); + this._badge = $('').appendTo(this._triggerElement.children('a')); } this._badge.text(count);