aboutsummaryrefslogtreecommitdiff
path: root/poll/public/script.js
diff options
context:
space:
mode:
authorLarsVomMars2021-01-21 12:48:36 +0100
committerLarsVomMars2021-01-21 12:48:36 +0100
commit448f455186ee695ce0c70574db4fe2b431ad6c55 (patch)
tree707a828b1fbb4e10ab4ba0f796690110d39cde1a /poll/public/script.js
parentfa4026fd87b17cc2c69f23da516f7399aae20f67 (diff)
FIXERINIO
Diffstat (limited to 'poll/public/script.js')
-rw-r--r--poll/public/script.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/poll/public/script.js b/poll/public/script.js
index dc46578..cdffa17 100644
--- a/poll/public/script.js
+++ b/poll/public/script.js
@@ -55,6 +55,12 @@ fetch(`/poll/api/question/${qid}?type=${type}`)
} else getNext(); // Resets
});
+fetch(`api/questions/${type}`)
+ .then(response => response.json())
+ .then(response => {
+ // TODO: PROGRESS POGGERS
+ });
+
function getNext(q = 0) {
window.location.assign(`/poll/?qid=${q}&type=${type}`);
}