X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/50442220cc52bad55c1003de34f8dada958650d5..dc1ab5f00eed170e75fe40687b381369a35760b8:/word/wijzer.js diff --git a/word/wijzer.js b/word/wijzer.js index b199be4..7446cc9 100644 --- a/word/wijzer.js +++ b/word/wijzer.js @@ -6,13 +6,14 @@ class WordWijzer extends WordQuiz { this.form.querySelectorAll('li[onclick]').forEach(answer => { answer.removeAttribute('onclick'); }); + this.log('done'); return; } this.question.innerHTML = ''; put(this.question, '[data-id=$] img[src=$]', word[2], - `/data/word/en/${word[2]}.jpg` + `/data/word/32/${word[2]}.jpg` ); } @@ -22,6 +23,7 @@ class WordWijzer extends WordQuiz { console.log(this.question, answer); let match = this.question.dataset.id == answer.dataset.id; put(answer, match ? '.good' : '.wrong'); + this.log('pick', answer.dataset.id, answer.index, this.question.dataset.id); this.next(); } @@ -32,10 +34,13 @@ class WordWijzer extends WordQuiz { let answers = put(this.form, 'ul'); this.words - .forEach(answer => { + .forEach((answer, seq) => { let label = answer[0].replace(/\/.*/, ''); // primary form put(answers, 'li[data-id=$][onclick=""]', - answer[2], label, {onclick: e => this.verify(e)} + answer[2], label, { + onclick: e => this.verify(e), + index: seq, + } ) }); this.words.shuffle();