mirror of
https://github.com/ZetaKebab/japanese-conjugation-drill.git
synced 2025-01-14 22:08:44 +00:00
Fixed answers with kanji.
This commit is contained in:
parent
ff2b8a00a4
commit
5fac5e4cab
@ -641,7 +641,8 @@ function generateVerbQuestion() {
|
|||||||
|
|
||||||
window.question = question;
|
window.question = question;
|
||||||
window.word = word;
|
window.word = word;
|
||||||
window.answer = wordWithFurigana(furiganaForms[to_form]);
|
window.answer = kanjiForms[to_form];
|
||||||
|
window.answerWithFurigana = wordWithFurigana(furiganaForms[to_form]);
|
||||||
window.answer2 = answer2;
|
window.answer2 = answer2;
|
||||||
|
|
||||||
$('#next').prop('disabled', true);
|
$('#next').prop('disabled', true);
|
||||||
@ -672,7 +673,7 @@ function processAnswer() {
|
|||||||
log.history.push({
|
log.history.push({
|
||||||
"question" : window.question,
|
"question" : window.question,
|
||||||
"response" : response,
|
"response" : response,
|
||||||
"answer" : window.answer,
|
"answer" : window.answerWithFurigana,
|
||||||
"kana" : window.answer2,
|
"kana" : window.answer2,
|
||||||
"correct" : correct
|
"correct" : correct
|
||||||
});
|
});
|
||||||
@ -684,7 +685,7 @@ function processAnswer() {
|
|||||||
if ((response == window.answer) || (response == window.answer2)) {
|
if ((response == window.answer) || (response == window.answer2)) {
|
||||||
$('#message').html("");
|
$('#message').html("");
|
||||||
} else {
|
} else {
|
||||||
$('#message').html("<div>The correct answer is " + window.answer + "</div>");
|
$('#message').html("<div>The correct answer is " + window.answerWithFurigana + "</div>");
|
||||||
}
|
}
|
||||||
|
|
||||||
$('#input').hide();
|
$('#input').hide();
|
||||||
@ -728,7 +729,7 @@ function updateHistoryView(log) {
|
|||||||
var td3 = $('<td>');
|
var td3 = $('<td>');
|
||||||
|
|
||||||
td1.html(entry.question);
|
td1.html(entry.question);
|
||||||
td2.html(entry.answer);
|
td2.html(entry.answerWithFurigana);
|
||||||
td3.text(entry.response);
|
td3.text(entry.response);
|
||||||
|
|
||||||
tr.append(td1);
|
tr.append(td1);
|
||||||
|
Loading…
Reference in New Issue
Block a user