mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-10 19:20:55 +00:00
clarify parameter type #423
This commit is contained in:
parent
2a39ad4a2a
commit
caca99335d
@ -874,7 +874,11 @@ jsPsych.plugins = {
|
|||||||
FLOAT: 3,
|
FLOAT: 3,
|
||||||
FUNCTION: 4,
|
FUNCTION: 4,
|
||||||
KEYCODE: 5,
|
KEYCODE: 5,
|
||||||
SELECT: 6
|
SELECT: 6,
|
||||||
|
HMTL_STRING: 7,
|
||||||
|
IMAGE: 8,
|
||||||
|
AUDIO: 9,
|
||||||
|
VIDEO: 10
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
@ -25,19 +25,19 @@ jsPsych.plugins["visual-search-circle"] = (function() {
|
|||||||
description: '',
|
description: '',
|
||||||
parameters: {
|
parameters: {
|
||||||
target: {
|
target: {
|
||||||
type: [jsPsych.plugins.parameterType.STRING],
|
type: [jsPsych.plugins.parameterType.IMAGE],
|
||||||
default: undefined,
|
default: undefined,
|
||||||
no_function: false,
|
no_function: false,
|
||||||
description: ''
|
description: ''
|
||||||
},
|
},
|
||||||
foil: {
|
foil: {
|
||||||
type: [jsPsych.plugins.parameterType.STRING],
|
type: [jsPsych.plugins.parameterType.IMAGE],
|
||||||
default: undefined,
|
default: undefined,
|
||||||
no_function: false,
|
no_function: false,
|
||||||
description: ''
|
description: ''
|
||||||
},
|
},
|
||||||
fixation_image: {
|
fixation_image: {
|
||||||
type: [jsPsych.plugins.parameterType.STRING],
|
type: [jsPsych.plugins.parameterType.IMAGE],
|
||||||
default: undefined,
|
default: undefined,
|
||||||
no_function: false,
|
no_function: false,
|
||||||
description: ''
|
description: ''
|
||||||
|
Loading…
Reference in New Issue
Block a user