From: Alexander Ebert Date: Thu, 25 Jul 2013 18:20:31 +0000 (+0200) Subject: Improved visuals for failed/paused installation X-Git-Tag: 2.0.0_Beta_5~11^2~1^2~1 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=5df9b2efce96a585717658a881ef283569010c90;p=GitHub%2FWoltLab%2FWCF.git Improved visuals for failed/paused installation --- diff --git a/wcfsetup/install/files/acp/js/WCF.ACP.js b/wcfsetup/install/files/acp/js/WCF.ACP.js index f5d726097b..6b5f908226 100644 --- a/wcfsetup/install/files/acp/js/WCF.ACP.js +++ b/wcfsetup/install/files/acp/js/WCF.ACP.js @@ -426,6 +426,7 @@ WCF.ACP.Package.Installation = Class.extend({ */ _failure: function() { if (this._dialog !== null) { + $('#packageInstallationProgress').removeAttr('value'); this._setIcon('remove'); } @@ -566,6 +567,7 @@ WCF.ACP.Package.Installation = Class.extend({ // create button to handle next step if (data.step && data.node) { + $('#packageInstallationProgress').removeAttr('value'); this._setIcon('question'); var $form = $('
').appendTo($('#packageInstallationInnerContent'));