Improved visuals for failed/paused installation
authorAlexander Ebert <ebert@woltlab.com>
Thu, 25 Jul 2013 18:20:31 +0000 (20:20 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Thu, 25 Jul 2013 18:20:31 +0000 (20:20 +0200)
wcfsetup/install/files/acp/js/WCF.ACP.js

index f5d726097b71f2bc698495a58186b3201267997a..6b5f9082265a5dbfce0a965a024f3593935d398a 100644 (file)
@@ -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 = $('<div class="formSubmit" />').appendTo($('#packageInstallationInnerContent'));