diff options
author | Andrea Lepori <alepori@student.ethz.ch> | 2022-01-04 12:43:11 +0100 |
---|---|---|
committer | Andrea Lepori <alepori@student.ethz.ch> | 2022-01-04 12:43:20 +0100 |
commit | 7e73c53f3eeb6a2c74c80ee9a00648f8cc4e9ab3 (patch) | |
tree | cca4cd2ca79613727b023fcbe362df5914b8e9ca /accounts/templates | |
parent | autoupdate oauth token when expired (diff) | |
download | scout-subs-7e73c53f3eeb6a2c74c80ee9a00648f8cc4e9ab3.tar.gz scout-subs-7e73c53f3eeb6a2c74c80ee9a00648f8cc4e9ab3.zip |
fix disabled fields not submitting
Diffstat (limited to 'accounts/templates')
-rw-r--r-- | accounts/templates/accounts/index.html | 3 |
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(); } |