-
Hi, I'm using
I would also like to add a word "Answer" before the actual answer - "Answer: A1" - below the "Q1" and above the placeholder, as well as expanding the line distance between the question and search icon on first page (maybe by adding an extra blank line between them?). I suppose their solutions are the same as to the first question though. Thank you!! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @xliu382, You can use a function-as-parameter to achieve this. Unfortunately we haven't yet implemented support for making the individual parts of the questions array functions, so you have to do it at the level of the questions: function(){
return [
{prompt: jsPsych.timelineVariable('q', true) + "<br><br>" + jsPsych.timelineVariable('a', true), columns: 6, required: true}
]
} |
Beta Was this translation helpful? Give feedback.
Hi @xliu382,
You can use a function-as-parameter to achieve this. Unfortunately we haven't yet implemented support for making the individual parts of the questions array functions, so you have to do it at the level of the
questions
parameter.