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
The app.js file calls the run entry point function only with jatos.studyJsonInput. It would be great if JATOS would also pass query parameters to the run function.
E.g.
...
jatos.onLoad(async()=>{// Get query paramsconstqueryParams=jatos.urlQueryParameters// Run the jsPsych ExperimentconstjsPsych=awaitrun({environment: "jatos",input: jatos.studyJsonInput,queryParams: queryParams,
...options,});if(jsPsych){jatos.submitResultData(jsPsych.data.get().json(),jatos.startNextComponent);}});
...
PS: I could make a PR for this change, but don't yet have permissions.
The text was updated successfully, but these errors were encountered:
The
app.js
file calls therun
entry point function only withjatos.studyJsonInput
. It would be great if JATOS would also pass query parameters to therun
function.E.g.
PS: I could make a PR for this change, but don't yet have permissions.
The text was updated successfully, but these errors were encountered: