An easy-to-use platform for EEG experimentation in the classroom
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

update to use performance

with the update to jspsych and jspych-react, 'performance' is now the supported rt_method. see https://github.com/jspsych/jsPsych/commit/501a5be52acbdcff8725407ed68a9405d0ba31ba

+3 -3
+1 -1
app/utils/jspsych/plugins/callback-html-display.js
··· 131 131 var keyboardListener = jsPsych.pluginAPI.getKeyboardResponse({ 132 132 callback_function: after_response, 133 133 valid_responses: trial.choices, 134 - rt_method: "date", 134 + rt_method: "performance", 135 135 persist: false, 136 136 allow_held_key: false 137 137 });
+1 -1
app/utils/jspsych/plugins/callback-image-display.js
··· 137 137 var keyboardListener = jsPsych.pluginAPI.getKeyboardResponse({ 138 138 callback_function: after_response, 139 139 valid_responses: trial.choices, 140 - rt_method: "date", 140 + rt_method: "performance", 141 141 persist: false, 142 142 allow_held_key: false 143 143 });
+1 -1
app/utils/jspsych/plugins/jspsych-animation.js
··· 137 137 var response_listener = jsPsych.pluginAPI.getKeyboardResponse({ 138 138 callback_function: after_response, 139 139 valid_responses: trial.choices, 140 - rt_method: "date", 140 + rt_method: "performance", 141 141 persist: true, 142 142 allow_held_key: false 143 143 });