This commit is contained in:
2019-07-11 13:38:49 +02:00
parent 7041cb5476
commit 8044d5835c

View File

@@ -127,7 +127,7 @@ function getQuestions() {
request.onreadystatechange = function () { request.onreadystatechange = function () {
if (this.readyState === 4 && this.status === 200) { if (this.readyState === 4 && this.status === 200) {
console.log(JSON.parse(this.respnseText)); console.log(JSON.parse(this.responseText));
questions = JSON.parse(this.responseText); questions = JSON.parse(this.responseText);