diff --git a/templates/extension-template-js/src/index.js b/templates/extension-template-js/src/index.js index f111b802..a0200b77 100644 --- a/templates/extension-template-js/src/index.js +++ b/templates/extension-template-js/src/index.js @@ -45,7 +45,7 @@ var _globalName_ = (function (jspsych) { type: ParameterType.STRING, }, }, - citation: { + citations: { /** APA citation JSON */ apa: `{apaJson}`, /** BibTeX citation JSON */ diff --git a/templates/extension-template-ts/src/index.ts b/templates/extension-template-ts/src/index.ts index 13421f3f..9e0e9b7f 100644 --- a/templates/extension-template-ts/src/index.ts +++ b/templates/extension-template-ts/src/index.ts @@ -32,7 +32,7 @@ class ExtensionNameExtension implements JsPsychExtension { type: ParameterType.STRING, }, }, - citation: { + citations: { /** APA citation JSON */ apa: `{apaJson}`, /** BibTeX citation JSON */ diff --git a/templates/plugin-template-js/src/index.js b/templates/plugin-template-js/src/index.js index 57651e69..f06bebcb 100644 --- a/templates/plugin-template-js/src/index.js +++ b/templates/plugin-template-js/src/index.js @@ -25,7 +25,7 @@ var _globalName_ = (function (jspsych) { data2: { type: ParameterType.STRING, }, - citation: { + citations: { /** APA citation JSON */ apa: `{apaJson}`, /** BibTeX citation JSON */ diff --git a/templates/plugin-template-ts/src/index.ts b/templates/plugin-template-ts/src/index.ts index 82676176..03196476 100644 --- a/templates/plugin-template-ts/src/index.ts +++ b/templates/plugin-template-ts/src/index.ts @@ -26,7 +26,7 @@ const info = { data2: { type: ParameterType.STRING, }, - citation: { + citations: { /** APA citation JSON */ apa: `{apaJson}`, /** BibTeX citation JSON */