You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/plugin-core/README.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Core
1
+
# plugin-core
2
2
3
3
This plugin handles most of the core procedures of an experiment. The tasks that tasks that it can do include (but are not limited to) showing instructions, short-answer tasks, cued-recall tasks, ratings tasks, etc.
4
4
@@ -133,7 +133,7 @@ function list_data(data) {
133
133
jsPsych.init({
134
134
...
135
135
timeline: [{
136
-
type:'pcllab-core',
136
+
type:pcllabCore,
137
137
...
138
138
done_callback: list_data
139
139
}]
@@ -155,7 +155,7 @@ The callback `feedback_html` provides a way to show feedback after a screen give
155
155
156
156
```javascript
157
157
const trial = {
158
-
type: 'pcllab-core',
158
+
type: pcllabCore,
159
159
stimuli: [
160
160
{
161
161
cue: 'Should pineapples be on pizza',
@@ -238,7 +238,7 @@ In this example, need to note how this.instructions is set up (it's calling in i
238
238
239
239
```javascript
240
240
const lookUp = {
241
-
type: "pcllab-core",
241
+
type: pcllabCore,
242
242
stimuli: [this.instructions["look-up"]],
243
243
response_count: 0,
244
244
show_button: true,
@@ -261,7 +261,7 @@ Also explain how to show individual stimuli
0 commit comments