diff options
Diffstat (limited to 'loggedin.js')
-rw-r--r-- | loggedin.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/loggedin.js b/loggedin.js index 0db4c7c..436719f 100644 --- a/loggedin.js +++ b/loggedin.js @@ -1,3 +1,5 @@ +var FORM_ASYNC = false; + const upload_form = document.getElementById("upload_form"); const the_file = document.getElementById("the_file"); const filename_input = document.getElementById("filename"); @@ -14,6 +16,11 @@ function on_file_added(_e) { if (the_file.files.length >= 1) { filename_input.value = the_file.files[0].name; + if (!FORM_ASYNC) { + upload_form.submit(); + return; + } + // Send the form asynchronously through the fetch api fetch(upload_form.action, { method: upload_form.method, |