From: Alexander Ebert Date: Sun, 8 Feb 2015 14:32:30 +0000 (+0100) Subject: Unchecking an update will now properly trigger the submit button state X-Git-Tag: 2.1.0_RC_1~54 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=2061c822c0d34abda7b7e95970b9adf72e22e765;p=GitHub%2FWoltLab%2FWCF.git Unchecking an update will now properly trigger the submit button state --- diff --git a/wcfsetup/install/files/acp/js/WCF.ACP.js b/wcfsetup/install/files/acp/js/WCF.ACP.js index ce219c0c9e..1c43b33bcb 100644 --- a/wcfsetup/install/files/acp/js/WCF.ACP.js +++ b/wcfsetup/install/files/acp/js/WCF.ACP.js @@ -1338,7 +1338,7 @@ WCF.ACP.Package.Server.Installation = Class.extend({ }); this._proxy.sendRequest(); }, -}) +}); /** * Namespace for package update related classes. @@ -1404,6 +1404,9 @@ WCF.ACP.Package.Update.Manager = Class.extend({ if (!$('input[type=checkbox]:checked').length) { this._submitButton.disable(); } + else { + this._submitButton.enable(); + } } },