From fc15ec88abcbea2ffcab4dda460bd5655da04832 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Thu, 11 Dec 2014 17:06:39 +0100 Subject: [PATCH] Hide loading overlay for user panel requests --- wcfsetup/install/files/js/WCF.User.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); -- 2.20.1