From 7c28081802008f7e451fed7341a8b5aceb573e65 Mon Sep 17 00:00:00 2001 From: Alex Vitkov Date: Fri, 12 Feb 2021 13:23:41 +0200 Subject: upload not async for now --- loggedin.js | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'loggedin.js') 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, -- cgit v1.2.3