This commit is contained in:
salano_ym 2024-04-27 16:12:00 +09:00 committed by GitHub
parent 6abb8c4994
commit f53e22d72c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 7 deletions

View File

@ -163,11 +163,11 @@ var cursor = 0
text: "←" text: "←"
disabled: !(results.len > 1 && (results.len - cursor) > 1) disabled: !(results.len > 1 && (results.len - cursor) > 1)
onClick: back onClick: back
} { }, {
text: "→" text: "→"
disabled: !(results.len > 1 && cursor > 0) disabled: !(results.len > 1 && cursor > 0)
onClick: forward onClick: forward
} { }, {
text: "引き直す" text: "引き直す"
onClick: do onClick: do
}] }]
@ -196,17 +196,17 @@ let qas = [{
choices: ['シドニー', 'キャンベラ', 'メルボルン'] choices: ['シドニー', 'キャンベラ', 'メルボルン']
a: 'キャンベラ' a: 'キャンベラ'
aDescription: '最大の都市はシドニーですが首都はキャンベラです。' aDescription: '最大の都市はシドニーですが首都はキャンベラです。'
} { }, {
q: '国土面積2番目の国は' q: '国土面積2番目の国は'
choices: ['カナダ', 'アメリカ', '中国'] choices: ['カナダ', 'アメリカ', '中国']
a: 'カナダ' a: 'カナダ'
aDescription: '大きい順にロシア、カナダ、アメリカ、中国です。' aDescription: '大きい順にロシア、カナダ、アメリカ、中国です。'
} { }, {
q: '二重内陸国ではないのは?' q: '二重内陸国ではないのは?'
choices: ['リヒテンシュタイン', 'ウズベキスタン', 'レソト'] choices: ['リヒテンシュタイン', 'ウズベキスタン', 'レソト']
a: 'レソト' a: 'レソト'
aDescription: 'レソトは(一重)内陸国です。' aDescription: 'レソトは(一重)内陸国です。'
} { }, {
q: '閘門がない運河は?' q: '閘門がない運河は?'
choices: ['キール運河', 'スエズ運河', 'パナマ運河'] choices: ['キール運河', 'スエズ運河', 'パナマ運河']
a: 'スエズ運河' a: 'スエズ運河'
@ -244,9 +244,9 @@ each (let qa, qas) {
}) })
Ui:C:container({ Ui:C:container({
children: [] children: []
} \`{qa.id}:a\`) }, \`{qa.id}:a\`)
] ]
} qa.id)) }, qa.id))
} }
@finish() { @finish() {