Skip to content

Commit

Permalink
change attentionCheck anwser, ready for server testing
Browse files Browse the repository at this point in the history
  • Loading branch information
HeningWang committed Jan 21, 2025
1 parent 21d6081 commit aca3769
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 17 deletions.
20 changes: 5 additions & 15 deletions experiments/pilot-indirectSource-V2/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
:options="[
'Uncover the ecological impact of Xeliherb farming.',
'Understand the medical applications of Xeliherb.',
'Investigate where naturally growing Xeliherb can be found.',
'Investigate where to find more naturally growing Xeliherb.',
'Find out how to improve the yield of cultivated Xeliherb.'
]"
/>
Expand Down Expand Up @@ -122,17 +122,7 @@
:response.sync= "$magpie.measurements.decision1" />
{{$magpie.measurements.decision1}}%
<button v-if="$magpie.measurements.decision1" @click="$magpie.saveAndNextScreen();">Submit</button>
<Record
:data="{
trialNR: i,
itemNr: trial.itemNr,
itemName: trial.itemName,
condition: 'with_info',
informationSource: trial.F1_informationSource,
decision1: $magpie.measurements.decision1,
decision2: $magpie.measurements.decision2
}"
/>

</Slide>
</Screen>
<!-- ************************************ -->
Expand Down Expand Up @@ -173,15 +163,15 @@
<SliderInput
left="very unlikely"
right="very likely"
:response.sync= "$magpie.measurements.decision2" />
:response.sync= "$magpie.measurements.decision2"
/>
{{$magpie.measurements.decision2}}%
<button v-if="$magpie.measurements.decision2" @click="$magpie.saveAndNextScreen();">Submit</button>
<Record
:data="{
trialNR: i,
itemNr: trial.itemNr,
itemName: trial.itemName,
condition: 'with_info',
informationSource: trial.F1_informationSource,
decision1: $magpie.measurements.decision1,
decision2: $magpie.measurements.decision2
Expand Down Expand Up @@ -215,7 +205,7 @@ export default {
items: _.shuffle(items).slice(0, 1),
selectedTrial: null,
correctAnswers: {
indirect:'Investigate where naturally growing Xeliherb can be found.',
indirect:'Investigate where to find more naturally growing Xeliherb.',
direct: 'Find out how to improve the yield of cultivated Xeliherb.'
},
showFeedback: false,
Expand Down
4 changes: 2 additions & 2 deletions experiments/pilot-indirectSource-V2/src/magpie.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ export default {
experimentId: '5',
serverUrl: 'https://magpie-cogsciprag.fly.dev',
socketUrl: 'wss://magpie-cogsciprag.fly.dev/socket',
completionUrl: 'https://app.prolific.com/submissions/complete?cc=CHFFTKHZ',
completionUrl: 'https://app.prolific.com/submissions/complete?cc=CMSWACGF',
contactEmail: '[email protected]',
// Either 'debug', 'directLink' or 'prolific'
mode: 'debug',
mode: 'directLink',
language: 'en'
};

0 comments on commit aca3769

Please sign in to comment.