You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/overview/building-surveys.md
+4-7Lines changed: 4 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -144,7 +144,6 @@ Along with either the 'elements' or 'pages' property, you can add optional surve
144
144
```javascript
145
145
constsurvey_json= {
146
146
title:"Survey title",
147
-
showQuestionNumbers:"off",
148
147
completeText:"Done",
149
148
pageNextText:"Next",
150
149
pagePrevText:"Back",
@@ -336,19 +335,19 @@ Rather than repeating a question format within the same trial, perhaps you want
336
335
timeline_variables: [
337
336
{
338
337
word:'cheese',
339
-
survey_json: { elements: [ {type:"text", title:"Enter a word related to CHEESE:", autocomplete:"off" } ], showQuestionNumbers:false, completeText:"Next", focusFirstQuestionAutomatic:true }
338
+
survey_json: { elements: [ {type:"text", title:"Enter a word related to CHEESE:", autocomplete:"off" } ], completeText:"Next", focusFirstQuestionAutomatic:true }
340
339
},
341
340
{
342
341
word:'ring',
343
-
survey_json: { elements: [ {type:"text", title:"Enter a word related to RING:", autocomplete:"off" } ], showQuestionNumbers:false, completeText:"Next", focusFirstQuestionAutomatic:true }
342
+
survey_json: { elements: [ {type:"text", title:"Enter a word related to RING:", autocomplete:"off" } ], completeText:"Next", focusFirstQuestionAutomatic:true }
344
343
},
345
344
{
346
345
word:'bat',
347
-
survey_json: { elements: [ {type:"text", title:"Enter a word related to BAT:", autocomplete:"off" } ], showQuestionNumbers:false, completeText:"Next", focusFirstQuestionAutomatic:true }
346
+
survey_json: { elements: [ {type:"text", title:"Enter a word related to BAT:", autocomplete:"off" } ], completeText:"Next", focusFirstQuestionAutomatic:true }
348
347
},
349
348
{
350
349
word:'cow',
351
-
survey_json: { elements: [ {type:"text", title:"Enter a word related to COW:", autocomplete:"off" } ], showQuestionNumbers:false, completeText:"Next", focusFirstQuestionAutomatic:true }
350
+
survey_json: { elements: [ {type:"text", title:"Enter a word related to COW:", autocomplete:"off" } ],completeText:"Next", focusFirstQuestionAutomatic:true }
352
351
}
353
352
]
354
353
};
@@ -391,7 +390,6 @@ Rather than repeating a question format within the same trial, perhaps you want
391
390
autocomplete:"off"
392
391
}
393
392
],
394
-
showQuestionNumbers:false,
395
393
completeText:"Next",
396
394
focusFirstQuestionAutomatic:true
397
395
}
@@ -419,7 +417,6 @@ Rather than repeating a question format within the same trial, perhaps you want
419
417
question.title=`Enter a word related to ${jsPsych.evaluateTimelineVariable('word').toUpperCase()}`;
0 commit comments