mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-10 19:20:55 +00:00
Merge pull request #1880 from nikbpetrov/same-different-default-values-fix
Fixes stim duration default values in same-different plugins #1879
This commit is contained in:
commit
1436132d6d
@ -45,7 +45,7 @@ jsPsych.plugins['same-different-html'] = (function() {
|
|||||||
first_stim_duration: {
|
first_stim_duration: {
|
||||||
type: jsPsych.plugins.parameterType.INT,
|
type: jsPsych.plugins.parameterType.INT,
|
||||||
pretty_name: 'First stimulus duration',
|
pretty_name: 'First stimulus duration',
|
||||||
default: null,
|
default: 1000,
|
||||||
description: 'How long to show the first stimulus for in milliseconds. If null, then the stimulus will remain on the screen until any keypress is made.'
|
description: 'How long to show the first stimulus for in milliseconds. If null, then the stimulus will remain on the screen until any keypress is made.'
|
||||||
},
|
},
|
||||||
gap_duration: {
|
gap_duration: {
|
||||||
@ -57,7 +57,7 @@ jsPsych.plugins['same-different-html'] = (function() {
|
|||||||
second_stim_duration: {
|
second_stim_duration: {
|
||||||
type: jsPsych.plugins.parameterType.INT,
|
type: jsPsych.plugins.parameterType.INT,
|
||||||
pretty_name: 'Second stimulus duration',
|
pretty_name: 'Second stimulus duration',
|
||||||
default: null,
|
default: 1000,
|
||||||
description: 'How long to show the second stimulus for in milliseconds. If null, then the stimulus will remain on the screen until a valid response is made.'
|
description: 'How long to show the second stimulus for in milliseconds. If null, then the stimulus will remain on the screen until a valid response is made.'
|
||||||
},
|
},
|
||||||
prompt: {
|
prompt: {
|
||||||
|
@ -47,7 +47,7 @@ jsPsych.plugins['same-different-image'] = (function() {
|
|||||||
first_stim_duration: {
|
first_stim_duration: {
|
||||||
type: jsPsych.plugins.parameterType.INT,
|
type: jsPsych.plugins.parameterType.INT,
|
||||||
pretty_name: 'First stimulus duration',
|
pretty_name: 'First stimulus duration',
|
||||||
default: null,
|
default: 1000,
|
||||||
description: 'How long to show the first stimulus for in milliseconds. If null, then the stimulus will remain on the screen until any keypress is made.'
|
description: 'How long to show the first stimulus for in milliseconds. If null, then the stimulus will remain on the screen until any keypress is made.'
|
||||||
},
|
},
|
||||||
gap_duration: {
|
gap_duration: {
|
||||||
@ -59,7 +59,7 @@ jsPsych.plugins['same-different-image'] = (function() {
|
|||||||
second_stim_duration: {
|
second_stim_duration: {
|
||||||
type: jsPsych.plugins.parameterType.INT,
|
type: jsPsych.plugins.parameterType.INT,
|
||||||
pretty_name: 'Second stimulus duration',
|
pretty_name: 'Second stimulus duration',
|
||||||
default: null,
|
default: 1000,
|
||||||
description: 'How long to show the second stimulus for in milliseconds. If null, then the stimulus will remain on the screen until a valid response is made.'
|
description: 'How long to show the second stimulus for in milliseconds. If null, then the stimulus will remain on the screen until a valid response is made.'
|
||||||
},
|
},
|
||||||
prompt: {
|
prompt: {
|
||||||
|
Loading…
Reference in New Issue
Block a user