aboutsummaryrefslogtreecommitdiffstats
path: root/src/public/js/form.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/public/js/form.js')
-rw-r--r--src/public/js/form.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/public/js/form.js b/src/public/js/form.js
index 1e9eaca..9823dcf 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/upload');
+ xhr.open('POST', '/api/v1/pendulum/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/actuate');
+ xhr.open('POST', '/api/v1/pendulum/actuate');
let data = {
file: file.file,
};
@@ -72,7 +72,10 @@ function createDownload(response) {
const tempName = response.filename;
const downloadName = response.name.split('.')[0];
const downloadLink = document.createElement('a');
- downloadLink.setAttribute('href', `/api/v1/download/?filename=${tempName}`);
+ downloadLink.setAttribute(
+ 'href',
+ `/api/v1/pendulum/download/?filename=${tempName}`
+ );
downloadLink.setAttribute('download', `${downloadName}.csv`);
downloadLink.innerText = 'Download CSV of results here.';
document.getElementById('download-link').appendChild(downloadLink);