From 2061c822c0d34abda7b7e95970b9adf72e22e765 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Sun, 8 Feb 2015 15:32:30 +0100 Subject: [PATCH] Unchecking an update will now properly trigger the submit button state --- wcfsetup/install/files/acp/js/WCF.ACP.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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(); + } } }, -- 2.20.1