diff options
author | LarsVomMars | 2021-01-21 12:48:36 +0100 |
---|---|---|
committer | LarsVomMars | 2021-01-21 12:48:36 +0100 |
commit | 448f455186ee695ce0c70574db4fe2b431ad6c55 (patch) | |
tree | 707a828b1fbb4e10ab4ba0f796690110d39cde1a /poll/public/script.js | |
parent | fa4026fd87b17cc2c69f23da516f7399aae20f67 (diff) |
FIXERINIO
Diffstat (limited to 'poll/public/script.js')
-rw-r--r-- | poll/public/script.js | 6 |
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}`); } |