word/multichoice: skip imageless (unanswerable) questions
authorMischa POSLAWSKY <perl@shiar.org>
Thu, 30 Dec 2021 02:41:30 +0000 (03:41 +0100)
committerMischa POSLAWSKY <perl@shiar.org>
Fri, 31 Dec 2021 04:29:05 +0000 (05:29 +0100)
word/multichoice.js

index 761b966dd3cc3976e9affc468e3c661bfc611824..61a7b5adbb7950d4c4bbb0161cb27c3dcdb23f13 100644 (file)
@@ -1,6 +1,7 @@
 class WordMultiChoice extends WordQuiz {
        next() {
                let word = this.words.shift();
+               if (!word[2]) return this.next();
                let form = put(this.form,
                        '+img[src=$]+ul', `/data/word/en/${word[2]}.jpg`,
                );