From 5ae7035d4db88726ff1ee0a6728abc8f8d9c19e4 Mon Sep 17 00:00:00 2001 From: Cian Monnin <113541912+CMonnin@users.noreply.github.com> Date: Mon, 30 Sep 2024 11:13:41 -0400 Subject: [PATCH] Update plugin-development.md fixed broken links for js and ts plugin templates --- docs/developers/plugin-development.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developers/plugin-development.md b/docs/developers/plugin-development.md index a349e4a4ca..a6487e40d9 100644 --- a/docs/developers/plugin-development.md +++ b/docs/developers/plugin-development.md @@ -10,7 +10,7 @@ As of version 7.0, plugins are [JavaScript Classes](https://developer.mozilla.or ### Templates -Plugins can be written in either plain JavaScript or in TypeScript. Template files for both [JavaScript](https://github.com/jspsych/jspsych-contrib/blob/main/packages/plugin-template/index.js) and [TypeScript](https://github.com/jspsych/jspsych-contrib/blob/main/packages/plugin-template-ts/src/index.ts) are available in the [jspsych-contrib repository](https://github.com/jspsych/jspsych-contrib/). +Plugins can be written in either plain JavaScript or in TypeScript. Template files for both [JavaScript](https://github.com/jspsych/jspsych-contrib/blob/main/templates/plugin-template-js/src/index.js) and [TypeScript](https://github.com/jspsych/jspsych-contrib/blob/main/templates/plugin-template-ts/src/index.ts) are available in the [jspsych-contrib repository](https://github.com/jspsych/jspsych-contrib/). ## Plugin components