From 73892092f9af26658d16f5cb9c5b79b5aed2b348 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Tue, 5 Apr 2022 17:57:54 +0200 Subject: Fix problem with form pointing to the wrong endpoint Signed-off-by: Matt Strapp --- src/public/js/form.js | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'src/public') diff --git a/src/public/js/form.js b/src/public/js/form.js index 9823dcf..1e9eaca 100644 --- a/src/public/js/form.js +++ b/src/public/js/form.js @@ -15,7 +15,7 @@ document.getElementById('upload').onsubmit = function () { document.getElementById('download-link').innerText = ''; // Make AJAX request let xhr = new XMLHttpRequest(); - xhr.open('POST', '/api/v1/pendulum/upload'); + xhr.open('POST', '/api/v1/upload'); let formData = new FormData(this); xhr.send(formData); xhr.onreadystatechange = function () { @@ -43,7 +43,7 @@ document.getElementById('upload').onsubmit = function () { // function actuate(file) { let xhr = new XMLHttpRequest(); - xhr.open('POST', '/api/v1/pendulum/actuate'); + xhr.open('POST', '/api/v1/actuate'); let data = { file: file.file, }; @@ -72,10 +72,7 @@ function createDownload(response) { const tempName = response.filename; const downloadName = response.name.split('.')[0]; const downloadLink = document.createElement('a'); - downloadLink.setAttribute( - 'href', - `/api/v1/pendulum/download/?filename=${tempName}` - ); + downloadLink.setAttribute('href', `/api/v1/download/?filename=${tempName}`); downloadLink.setAttribute('download', `${downloadName}.csv`); downloadLink.innerText = 'Download CSV of results here.'; document.getElementById('download-link').appendChild(downloadLink); -- cgit v1.2.3