aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/public/js/form.js9
1 files changed, 3 insertions, 6 deletions
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);