Skip to content

Commit

Permalink
removed subset of stimuli
Browse files Browse the repository at this point in the history
  • Loading branch information
AnafNeves committed Dec 18, 2024
1 parent 3e6b1fd commit d5f7e1a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions study2/experiment/fiction.js
Original file line number Diff line number Diff line change
Expand Up @@ -350,8 +350,8 @@ var fiction_phase1_break = {

var fiction_phase1b = {
timeline_variables: stimuli_list
.slice(Math.ceil(stimuli_list.length / 2), stimuli_list.length)
.slice(0, 3), // TODO: remove this
.slice(Math.ceil(stimuli_list.length / 2), stimuli_list.length),
// .slice(0, 3), // TODO: remove this
timeline: [
fiction_fixation1a,
fiction_cue,
Expand Down
7 changes: 4 additions & 3 deletions study2/experiment/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@
.slice(
Math.ceil(stimuli.length / 2),
stimuli_list.length
)
.slice(0, 3),
),
//.slice(0, 3),
timeline: [
fiction_fixation1a,
fiction_cue,
Expand All @@ -151,7 +151,8 @@
// Stage 2 ==============================================================
timeline.push(fiction_instructions2)
timeline.push({
timeline_variables: stimuli.slice(0, 3),
timeline_variables: stimuli,
//.slice(0, 3),
timeline: [
fiction_fixation2,
fiction_showimage2,
Expand Down

0 comments on commit d5f7e1a

Please sign in to comment.