From 583b9a9d1b331003dc2e9a3aea53e14847ac9513 Mon Sep 17 00:00:00 2001 From: Josh de Leeuw Date: Thu, 11 Jan 2018 10:45:57 -0500 Subject: [PATCH] fix #490 --- plugins/template/jspsych-plugin-template.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 } } }