NIHVIVO-3213: If a proxy is removed the submit btn has to be enabled

This commit is contained in:
manolobevia 2011-10-31 22:19:16 +00:00
parent af9d8c7424
commit 51cc2feba0

View file

@ -34,6 +34,10 @@ $(document).ready(function(){
theSubmitButton.removeClass("disabledSubmit"); theSubmitButton.removeClass("disabledSubmit");
}); });
}); });
$('.remove-proxy').click(function(){
theSubmitButton.removeAttr('disabled');
theSubmitButton.removeClass("disabledSubmit");
})
}); });