aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Vitkov <alexvitkov98@gmail.com>2021-02-12 13:23:41 +0200
committerAlex Vitkov <alexvitkov98@gmail.com>2021-02-12 13:23:41 +0200
commit7c28081802008f7e451fed7341a8b5aceb573e65 (patch)
tree5d20f956ff7ba69d616c33227ea225bd1942c120
parent1ed8d0f9259ccb8d9adc0cf12267043ef351e5ec (diff)
downloadfileup-7c28081802008f7e451fed7341a8b5aceb573e65.tar.gz
upload not async for now
-rw-r--r--loggedin.js7
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,