aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/templates/accounts/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'accounts/templates/accounts/index.html')
-rw-r--r--accounts/templates/accounts/index.html3
1 files changed, 3 insertions, 0 deletions
diff --git a/accounts/templates/accounts/index.html b/accounts/templates/accounts/index.html
index 4133270..341fd7d 100644
--- a/accounts/templates/accounts/index.html
+++ b/accounts/templates/accounts/index.html
@@ -366,6 +366,9 @@ function send(id) {
var form = document.getElementById('form1');
var action = document.getElementById('action');
action.setAttribute('value', id);
+ $(':disabled').each(function(e) {
+ $(this).removeAttr('disabled');
+ })
form.submit();
}