diff --git a/plugins/template/jspsych-plugin-template.js b/plugins/template/jspsych-plugin-template.js index 1918e8d6..792893d5 100644 --- a/plugins/template/jspsych-plugin-template.js +++ b/plugins/template/jspsych-plugin-template.js @@ -5,17 +5,17 @@ jsPsych.plugins["PLUGIN-NAME"] = (function() { var plugin = {}; - + plugin.info = { name: "PLUGIN-NAME", parameters: { parameter_name: { - type: jsPsych.plugins.parameterType.INT, // INT, IMAGE, KEYCODE, STRING, FUNCTION, FLOAT - default_value: undefined + type: jsPsych.plugins.parameterType.INT, // BOOL, STRING, INT, FLOAT, FUNCTION, KEYCODE, SELECT, HTML_STRING, IMAGE, AUDIO, VIDEO, OBJECT, COMPLEX + default: undefined }, parameter_name: { type: jsPsych.plugins.parameterType.IMAGE, - default_value: undefined + default: undefined } } }