From: Magnus Kühn Date: Sun, 10 Feb 2013 18:27:51 +0000 (+0100) Subject: Dropped WCF.Action.Proxy._activeRequests X-Git-Tag: 2.0.0_Beta_1~493^2~3^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=39a038cdaa1f3c2104690885bd6b404cb48e0bcd;p=GitHub%2FWoltLab%2FWCF.git Dropped WCF.Action.Proxy._activeRequests --- diff --git a/wcfsetup/install/files/js/WCF.js b/wcfsetup/install/files/js/WCF.js index 30139f5b9c..2fa5f64f23 100755 --- a/wcfsetup/install/files/js/WCF.js +++ b/wcfsetup/install/files/js/WCF.js @@ -1403,12 +1403,6 @@ WCF.Action = {}; * @param object options */ WCF.Action.Proxy = Class.extend({ - /** - * count of active requests - * @var integer - */ - _activeRequests: 0, - /** * suppresses errors * @var boolean @@ -1471,8 +1465,6 @@ WCF.Action.Proxy = Class.extend({ this.options.init(this); } - this._activeRequests++; - if (this.options.showLoadingOverlay) { WCF.LoadingOverlayHandler.show(); } @@ -1546,8 +1538,6 @@ WCF.Action.Proxy = Class.extend({ WCF.LoadingOverlayHandler.hide(); } - this._activeRequests--; - // disable DOMNodeInserted event WCF.DOMNodeInsertedHandler.disable(); },