From 51cc2feba0afc350f5e3be5de29e7342bdb88884 Mon Sep 17 00:00:00 2001 From: manolobevia Date: Mon, 31 Oct 2011 22:19:16 +0000 Subject: [PATCH] NIHVIVO-3213: If a proxy is removed the submit btn has to be enabled --- webapp/web/js/account/accountListenerSetup.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/webapp/web/js/account/accountListenerSetup.js b/webapp/web/js/account/accountListenerSetup.js index d811f2410..3356ee5d3 100644 --- a/webapp/web/js/account/accountListenerSetup.js +++ b/webapp/web/js/account/accountListenerSetup.js @@ -34,6 +34,10 @@ $(document).ready(function(){ theSubmitButton.removeClass("disabledSubmit"); }); }); - + + $('.remove-proxy').click(function(){ + theSubmitButton.removeAttr('disabled'); + theSubmitButton.removeClass("disabledSubmit"); + }) });