Skip to content

Commit

Permalink
implemented second set of comprehension trials
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-franke committed May 22, 2024
1 parent c0fa20c commit 8271b39
Showing 1 changed file with 58 additions and 5 deletions.
63 changes: 58 additions & 5 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,67 @@

</InstructionScreen>

<InstructionScreen :title="'Comprehension questions'">
<Screen :title="'Comprehension Test'">
<Slide>
Please answer the following comprehension question:
<p>
<strong>
On the island, who knows how the machine works?
</strong>
</p>

[Comprehension questions:
-On the island, who knows how the machine works? Everyone / only people who believe in Religion 1 / only people who believe in Religion 2 / Noone
-When you activate the machine, you can control which colors get released. True / False]
<p/>

<ForcedChoiceInput
:response.sync= "$magpie.measurements.response"
:options="['Everyone', 'Followers of Religion 1', 'Followers of Religion 2']"
@update:response="$magpie.saveAndNextScreen();"/>

</InstructionScreen>
<Record
:data="{
trialType : 'comprehension-2',
trialNr : 1,
correctResponse: 'Everyone',
response : $magpie.measurements.response,
actual_cause : actual_cause,
effect_valence : effect_valence,
mechanism : mechanism
}"
/>

</Slide>
</Screen>

<Screen :title="'Comprehension Test'">
<Slide>
Please answer the following comprehension question:
<p>
<strong>
When you activate the machine, you can control which colors get released.
</strong>
</p>

<p/>

<ForcedChoiceInput
:response.sync= "$magpie.measurements.response"
:options="['TRUE', 'FALSE']"
@update:response="$magpie.saveAndNextScreen();"/>

<Record
:data="{
trialType : 'comprehension-2',
trialNr : 2,
correctResponse: 'FALSE',
response : $magpie.measurements.response,
actual_cause : actual_cause,
effect_valence : effect_valence,
mechanism : mechanism
}"
/>

</Slide>
</Screen>

<Screen>

Expand Down

0 comments on commit 8271b39

Please sign in to comment.