diff --git a/README.md b/README.md index 132b823a..6855dbf3 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,15 @@  -jsPsych is a JavaScript library for creating behavioral experiments that run in a web browser. jsPsych creates a framework for defining experiments and provides a set of flexible plugins that create different kinds of tasks a subject could complete during an experiment. By assembling different plugins together and customizing the parameters of each, it is possible to create many different types of experiments. +jsPsych is a JavaScript library for creating behavioral experiments that run in a web browser. jsPsych provides a framework for defining experiments using a set of flexible plugins that create different kinds of tasks a subject could complete during an experiment. By assembling these different plugins together it is possible to create many different types of experiments. - -Code Demos +Examples ---------- -[Demo 1](https://github.com/jspsych/jsPsych/tree/master/examples/demos/demo_1.html) with the instructions plugin: +These examples are intended to illustrate what jsPsych code and experiments look like. There is a larger set of example code in the [examples folder](/examples). + +#1: [Displaying instructions](https://github.com/jspsych/jsPsych/tree/master/examples/demos/demo_1.html)
Your average response time for"+ - "incongruent trials was "incongruent_rt + + "incongruent trials was "+incongruent_rt+ "ms.
"; } }; @@ -163,12 +162,8 @@ timeline.push(test); timeline.push(debrief); jsPsych.init({ timeline: timeline, - on_finish: function() { - jsPsych.data.displayData(); - } }); ``` -