jspsych 6.2.0 → 7.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +43 -29
- package/css/jspsych.css +39 -39
- package/dist/JsPsych.d.ts +112 -0
- package/dist/TimelineNode.d.ts +34 -0
- package/dist/index.browser.js +3164 -0
- package/dist/index.browser.js.map +1 -0
- package/dist/index.browser.min.js +2 -0
- package/dist/index.browser.min.js.map +1 -0
- package/dist/index.cjs +3158 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +3152 -0
- package/dist/index.js.map +1 -0
- package/dist/migration.d.ts +3 -0
- package/dist/modules/data/DataCollection.d.ts +45 -0
- package/dist/modules/data/DataColumn.d.ts +15 -0
- package/dist/modules/data/index.d.ts +25 -0
- package/dist/modules/data/utils.d.ts +3 -0
- package/dist/modules/extensions.d.ts +22 -0
- package/dist/modules/plugin-api/HardwareAPI.d.ts +15 -0
- package/dist/modules/plugin-api/KeyboardListenerAPI.d.ts +34 -0
- package/dist/modules/plugin-api/MediaAPI.d.ts +27 -0
- package/dist/modules/plugin-api/SimulationAPI.d.ts +41 -0
- package/dist/modules/plugin-api/TimeoutAPI.d.ts +5 -0
- package/dist/modules/plugin-api/index.d.ts +8 -0
- package/dist/modules/plugins.d.ts +129 -0
- package/dist/modules/randomization.d.ts +35 -0
- package/dist/modules/turk.d.ts +40 -0
- package/dist/modules/utils.d.ts +7 -0
- package/package.json +32 -15
- package/src/JsPsych.ts +884 -0
- package/src/TimelineNode.ts +536 -0
- package/src/index.ts +71 -0
- package/src/migration.ts +37 -0
- package/src/modules/data/DataCollection.ts +198 -0
- package/src/modules/data/DataColumn.ts +86 -0
- package/src/modules/data/index.ts +174 -0
- package/src/modules/data/utils.ts +75 -0
- package/src/modules/extensions.ts +23 -0
- package/src/modules/plugin-api/HardwareAPI.ts +32 -0
- package/src/modules/plugin-api/KeyboardListenerAPI.ts +165 -0
- package/src/modules/plugin-api/MediaAPI.ts +337 -0
- package/src/modules/plugin-api/SimulationAPI.ts +181 -0
- package/src/modules/plugin-api/TimeoutAPI.ts +16 -0
- package/src/modules/plugin-api/index.ts +28 -0
- package/src/modules/plugins.ts +158 -0
- package/src/modules/randomization.ts +327 -0
- package/src/modules/turk.ts +99 -0
- package/src/modules/utils.ts +30 -0
- package/.github/workflows/jest.yml +0 -20
- package/code-of-conduct.md +0 -56
- package/contributors.md +0 -61
- package/docs/CNAME +0 -1
- package/docs/about/about.md +0 -18
- package/docs/about/contributing.md +0 -43
- package/docs/about/license.md +0 -25
- package/docs/about/support.md +0 -7
- package/docs/core_library/jspsych-core.md +0 -661
- package/docs/core_library/jspsych-data.md +0 -589
- package/docs/core_library/jspsych-pluginAPI.md +0 -510
- package/docs/core_library/jspsych-randomization.md +0 -397
- package/docs/core_library/jspsych-turk.md +0 -102
- package/docs/img/blue.png +0 -0
- package/docs/img/folder-setup.png +0 -0
- package/docs/img/folder-with-html.png +0 -0
- package/docs/img/githubreleases.jpg +0 -0
- package/docs/img/jspsych-favicon.png +0 -0
- package/docs/img/jspsych-logo-no-text-mono.svg +0 -493
- package/docs/img/jspsych-logo.jpg +0 -0
- package/docs/img/orange.png +0 -0
- package/docs/img/palmer_stim.png +0 -0
- package/docs/img/progress_bar.png +0 -0
- package/docs/img/visual_search_example.jpg +0 -0
- package/docs/index.md +0 -9
- package/docs/overview/browser-device-support.md +0 -35
- package/docs/overview/callbacks.md +0 -140
- package/docs/overview/data.md +0 -281
- package/docs/overview/exclude-browser.md +0 -32
- package/docs/overview/experiment-options.md +0 -121
- package/docs/overview/fullscreen.md +0 -36
- package/docs/overview/media-preloading.md +0 -91
- package/docs/overview/mturk.md +0 -77
- package/docs/overview/progress-bar.md +0 -110
- package/docs/overview/record-browser-interactions.md +0 -23
- package/docs/overview/running-experiments.md +0 -95
- package/docs/overview/timeline.md +0 -387
- package/docs/overview/trial.md +0 -142
- package/docs/plugins/creating-a-plugin.md +0 -79
- package/docs/plugins/jspsych-animation.md +0 -40
- package/docs/plugins/jspsych-audio-button-response.md +0 -60
- package/docs/plugins/jspsych-audio-keyboard-response.md +0 -58
- package/docs/plugins/jspsych-audio-slider-response.md +0 -53
- package/docs/plugins/jspsych-call-function.md +0 -81
- package/docs/plugins/jspsych-canvas-button-response.md +0 -66
- package/docs/plugins/jspsych-canvas-keyboard-response.md +0 -68
- package/docs/plugins/jspsych-canvas-slider-response.md +0 -89
- package/docs/plugins/jspsych-categorize-animation.md +0 -60
- package/docs/plugins/jspsych-categorize-html.md +0 -52
- package/docs/plugins/jspsych-categorize-image.md +0 -53
- package/docs/plugins/jspsych-cloze.md +0 -45
- package/docs/plugins/jspsych-external-html.md +0 -70
- package/docs/plugins/jspsych-free-sort.md +0 -55
- package/docs/plugins/jspsych-fullscreen.md +0 -57
- package/docs/plugins/jspsych-html-button-response.md +0 -42
- package/docs/plugins/jspsych-html-keyboard-response.md +0 -51
- package/docs/plugins/jspsych-html-slider-response.md +0 -45
- package/docs/plugins/jspsych-iat-html.md +0 -64
- package/docs/plugins/jspsych-iat-image.md +0 -64
- package/docs/plugins/jspsych-image-button-response.md +0 -46
- package/docs/plugins/jspsych-image-keyboard-response.md +0 -57
- package/docs/plugins/jspsych-image-slider-response.md +0 -52
- package/docs/plugins/jspsych-instructions.md +0 -58
- package/docs/plugins/jspsych-maxdiff.md +0 -42
- package/docs/plugins/jspsych-rdk.md +0 -119
- package/docs/plugins/jspsych-reconstruction.md +0 -48
- package/docs/plugins/jspsych-resize.md +0 -39
- package/docs/plugins/jspsych-same-different-html.md +0 -53
- package/docs/plugins/jspsych-same-different-image.md +0 -66
- package/docs/plugins/jspsych-serial-reaction-time-mouse.md +0 -50
- package/docs/plugins/jspsych-serial-reaction-time.md +0 -57
- package/docs/plugins/jspsych-survey-html-form.md +0 -50
- package/docs/plugins/jspsych-survey-likert.md +0 -70
- package/docs/plugins/jspsych-survey-multi-choice.md +0 -48
- package/docs/plugins/jspsych-survey-multi-select.md +0 -53
- package/docs/plugins/jspsych-survey-text.md +0 -63
- package/docs/plugins/jspsych-video-button-response.md +0 -52
- package/docs/plugins/jspsych-video-keyboard-response.md +0 -48
- package/docs/plugins/jspsych-video-slider-response.md +0 -58
- package/docs/plugins/jspsych-visual-search-circle.md +0 -52
- package/docs/plugins/jspsych-vsl-animate-occlusion.md +0 -55
- package/docs/plugins/jspsych-vsl-grid-scene.md +0 -62
- package/docs/plugins/overview.md +0 -111
- package/docs/tutorials/hello-world.md +0 -144
- package/docs/tutorials/rt-task.md +0 -1107
- package/examples/add-to-end-of-timeline.html +0 -32
- package/examples/conditional-and-loop-functions.html +0 -63
- package/examples/css/jquery-ui.css +0 -1225
- package/examples/data-add-properties.html +0 -40
- package/examples/data-as-function.html +0 -36
- package/examples/data-from-timeline.html +0 -45
- package/examples/data-from-url.html +0 -21
- package/examples/demo-flanker.html +0 -108
- package/examples/demo-simple-rt-task.html +0 -104
- package/examples/demos/demo_1.html +0 -29
- package/examples/demos/demo_2.html +0 -43
- package/examples/demos/demo_3.html +0 -58
- package/examples/display-element-to-embed-experiment.html +0 -73
- package/examples/end-active-node.html +0 -52
- package/examples/end-experiment.html +0 -43
- package/examples/exclusions.html +0 -32
- package/examples/external_html/simple_consent.html +0 -4
- package/examples/img/1.gif +0 -0
- package/examples/img/10.gif +0 -0
- package/examples/img/11.gif +0 -0
- package/examples/img/12.gif +0 -0
- package/examples/img/2.gif +0 -0
- package/examples/img/3.gif +0 -0
- package/examples/img/4.gif +0 -0
- package/examples/img/5.gif +0 -0
- package/examples/img/6.gif +0 -0
- package/examples/img/7.gif +0 -0
- package/examples/img/8.gif +0 -0
- package/examples/img/9.gif +0 -0
- package/examples/img/age/of1.jpg +0 -0
- package/examples/img/age/of2.jpg +0 -0
- package/examples/img/age/of3.jpg +0 -0
- package/examples/img/age/om1.jpg +0 -0
- package/examples/img/age/om2.jpg +0 -0
- package/examples/img/age/om3.jpg +0 -0
- package/examples/img/age/yf1.jpg +0 -0
- package/examples/img/age/yf4.jpg +0 -0
- package/examples/img/age/yf5.jpg +0 -0
- package/examples/img/age/ym2.jpg +0 -0
- package/examples/img/age/ym3.jpg +0 -0
- package/examples/img/age/ym5.jpg +0 -0
- package/examples/img/backwardN.gif +0 -0
- package/examples/img/blue.png +0 -0
- package/examples/img/con1.png +0 -0
- package/examples/img/con2.png +0 -0
- package/examples/img/fixation.gif +0 -0
- package/examples/img/happy_face_1.jpg +0 -0
- package/examples/img/happy_face_2.jpg +0 -0
- package/examples/img/happy_face_3.jpg +0 -0
- package/examples/img/happy_face_4.jpg +0 -0
- package/examples/img/inc1.png +0 -0
- package/examples/img/inc2.png +0 -0
- package/examples/img/normalN.gif +0 -0
- package/examples/img/orange.png +0 -0
- package/examples/img/redX.png +0 -0
- package/examples/img/ribbon.jpg +0 -0
- package/examples/img/sad_face_1.jpg +0 -0
- package/examples/img/sad_face_2.jpg +0 -0
- package/examples/img/sad_face_3.jpg +0 -0
- package/examples/img/sad_face_4.jpg +0 -0
- package/examples/js/snap.svg-min.js +0 -21
- package/examples/jspsych-RDK.html +0 -58
- package/examples/jspsych-animation.html +0 -33
- package/examples/jspsych-audio-button-response.html +0 -52
- package/examples/jspsych-audio-keyboard-response.html +0 -62
- package/examples/jspsych-audio-slider-response.html +0 -55
- package/examples/jspsych-call-function.html +0 -32
- package/examples/jspsych-canvas-button-response.html +0 -95
- package/examples/jspsych-canvas-keyboard-response.html +0 -78
- package/examples/jspsych-canvas-slider-response.html +0 -67
- package/examples/jspsych-categorize-animation.html +0 -46
- package/examples/jspsych-categorize-html.html +0 -38
- package/examples/jspsych-categorize-image.html +0 -38
- package/examples/jspsych-cloze.html +0 -42
- package/examples/jspsych-free-sort.html +0 -97
- package/examples/jspsych-fullscreen.html +0 -44
- package/examples/jspsych-html-button-response.html +0 -46
- package/examples/jspsych-html-keyboard-response.html +0 -42
- package/examples/jspsych-html-slider-response.html +0 -53
- package/examples/jspsych-iat.html +0 -510
- package/examples/jspsych-image-button-response.html +0 -84
- package/examples/jspsych-image-keyboard-response.html +0 -78
- package/examples/jspsych-image-slider-response.html +0 -76
- package/examples/jspsych-instructions.html +0 -37
- package/examples/jspsych-maxdiff.html +0 -33
- package/examples/jspsych-reconstruction.html +0 -43
- package/examples/jspsych-resize.html +0 -34
- package/examples/jspsych-same-different-html.html +0 -28
- package/examples/jspsych-same-different-image.html +0 -33
- package/examples/jspsych-serial-reaction-time-mouse.html +0 -98
- package/examples/jspsych-serial-reaction-time.html +0 -54
- package/examples/jspsych-survey-html-form.html +0 -33
- package/examples/jspsych-survey-likert.html +0 -42
- package/examples/jspsych-survey-multi-choice.html +0 -40
- package/examples/jspsych-survey-multi-select.html +0 -42
- package/examples/jspsych-survey-text.html +0 -34
- package/examples/jspsych-video-button-response.html +0 -57
- package/examples/jspsych-video-keyboard-response.html +0 -53
- package/examples/jspsych-video-slider-response.html +0 -55
- package/examples/jspsych-visual-search-circle.html +0 -58
- package/examples/jspsych-vsl-animate-occlusion.html +0 -29
- package/examples/jspsych-vsl-grid-scene.html +0 -41
- package/examples/lexical-decision.html +0 -132
- package/examples/manual-preloading.html +0 -53
- package/examples/pause-unpause.html +0 -33
- package/examples/progress-bar.html +0 -62
- package/examples/sound/hammer.mp3 +0 -0
- package/examples/sound/sound.mp3 +0 -0
- package/examples/sound/speech_blue.mp3 +0 -0
- package/examples/sound/speech_green.mp3 +0 -0
- package/examples/sound/speech_joke.mp3 +0 -0
- package/examples/sound/speech_red.mp3 +0 -0
- package/examples/sound/tone.mp3 +0 -0
- package/examples/timeline-variables-sampling.html +0 -50
- package/examples/timeline-variables.html +0 -55
- package/examples/video/sample_video.mp4 +0 -0
- package/jspsych.js +0 -2796
- package/license.txt +0 -21
- package/mkdocs.yml +0 -104
- package/plugins/jspsych-animation.js +0 -189
- package/plugins/jspsych-audio-button-response.js +0 -247
- package/plugins/jspsych-audio-keyboard-response.js +0 -204
- package/plugins/jspsych-audio-slider-response.js +0 -262
- package/plugins/jspsych-call-function.js +0 -58
- package/plugins/jspsych-canvas-button-response.js +0 -199
- package/plugins/jspsych-canvas-keyboard-response.js +0 -155
- package/plugins/jspsych-canvas-slider-response.js +0 -207
- package/plugins/jspsych-categorize-animation.js +0 -266
- package/plugins/jspsych-categorize-html.js +0 -220
- package/plugins/jspsych-categorize-image.js +0 -222
- package/plugins/jspsych-cloze.js +0 -112
- package/plugins/jspsych-external-html.js +0 -112
- package/plugins/jspsych-free-sort.js +0 -444
- package/plugins/jspsych-fullscreen.js +0 -104
- package/plugins/jspsych-html-button-response.js +0 -188
- package/plugins/jspsych-html-keyboard-response.js +0 -149
- package/plugins/jspsych-html-slider-response.js +0 -202
- package/plugins/jspsych-iat-html.js +0 -284
- package/plugins/jspsych-iat-image.js +0 -286
- package/plugins/jspsych-image-button-response.js +0 -311
- package/plugins/jspsych-image-keyboard-response.js +0 -247
- package/plugins/jspsych-image-slider-response.js +0 -353
- package/plugins/jspsych-instructions.js +0 -237
- package/plugins/jspsych-maxdiff.js +0 -174
- package/plugins/jspsych-rdk.js +0 -1373
- package/plugins/jspsych-reconstruction.js +0 -134
- package/plugins/jspsych-resize.js +0 -166
- package/plugins/jspsych-same-different-html.js +0 -168
- package/plugins/jspsych-same-different-image.js +0 -169
- package/plugins/jspsych-serial-reaction-time-mouse.js +0 -213
- package/plugins/jspsych-serial-reaction-time.js +0 -247
- package/plugins/jspsych-survey-html-form.js +0 -171
- package/plugins/jspsych-survey-likert.js +0 -195
- package/plugins/jspsych-survey-multi-choice.js +0 -208
- package/plugins/jspsych-survey-multi-select.js +0 -232
- package/plugins/jspsych-survey-text.js +0 -185
- package/plugins/jspsych-video-button-response.js +0 -320
- package/plugins/jspsych-video-keyboard-response.js +0 -279
- package/plugins/jspsych-video-slider-response.js +0 -351
- package/plugins/jspsych-visual-search-circle.js +0 -259
- package/plugins/jspsych-vsl-animate-occlusion.js +0 -196
- package/plugins/jspsych-vsl-grid-scene.js +0 -103
- package/plugins/template/jspsych-plugin-template.js +0 -35
- package/tests/README.md +0 -7
- package/tests/jsPsych/default-iti.test.js +0 -51
- package/tests/jsPsych/default-parameters.test.js +0 -58
- package/tests/jsPsych/endexperiment.test.js +0 -49
- package/tests/jsPsych/events.test.js +0 -369
- package/tests/jsPsych/init.test.js +0 -48
- package/tests/jsPsych/loads.test.js +0 -7
- package/tests/jsPsych/min-rt.test.js +0 -58
- package/tests/jsPsych/progressbar.test.js +0 -202
- package/tests/jsPsych/timeline-variables.test.js +0 -254
- package/tests/jsPsych/timelines.test.js +0 -498
- package/tests/jsPsych.data/datacollection.test.js +0 -116
- package/tests/jsPsych.data/datacolumn.test.js +0 -50
- package/tests/jsPsych.data/datamodule.test.js +0 -152
- package/tests/jsPsych.data/dataparameter.test.js +0 -251
- package/tests/jsPsych.data/interactions.test.js +0 -109
- package/tests/jsPsych.pluginAPI/pluginapi.test.js +0 -144
- package/tests/jsPsych.randomization/randomziation.test.js +0 -27
- package/tests/jsPsych.utils/utils.test.js +0 -58
- package/tests/media/blue.png +0 -0
- package/tests/media/orange.png +0 -0
- package/tests/media/sample_video.mp4 +0 -0
- package/tests/media/sound.mp3 +0 -0
- package/tests/plugins/plugin-animation.test.js +0 -35
- package/tests/plugins/plugin-audio-button-response.test.js +0 -15
- package/tests/plugins/plugin-audio-keyboard-response.test.js +0 -15
- package/tests/plugins/plugin-audio-slider-response.test.js +0 -15
- package/tests/plugins/plugin-call-function.test.js +0 -49
- package/tests/plugins/plugin-categorize-animation.test.js +0 -274
- package/tests/plugins/plugin-categorize-html.test.js +0 -17
- package/tests/plugins/plugin-categorize-image.test.js +0 -17
- package/tests/plugins/plugin-cloze.test.js +0 -140
- package/tests/plugins/plugin-free-sort.test.js +0 -112
- package/tests/plugins/plugin-fullscreen.test.js +0 -41
- package/tests/plugins/plugin-html-button-response.test.js +0 -161
- package/tests/plugins/plugin-html-keyboard-response.test.js +0 -139
- package/tests/plugins/plugin-html-slider-response.test.js +0 -155
- package/tests/plugins/plugin-iat-html.test.js +0 -328
- package/tests/plugins/plugin-iat-image.test.js +0 -308
- package/tests/plugins/plugin-image-button-response.test.js +0 -183
- package/tests/plugins/plugin-image-keyboard-response.test.js +0 -154
- package/tests/plugins/plugin-image-slider-response.test.js +0 -183
- package/tests/plugins/plugin-instructions.test.js +0 -66
- package/tests/plugins/plugin-maxdiff.test.js +0 -39
- package/tests/plugins/plugin-rdk.test.js +0 -17
- package/tests/plugins/plugin-reconstruction.test.js +0 -16
- package/tests/plugins/plugin-resize.test.js +0 -16
- package/tests/plugins/plugin-same-different-html.test.js +0 -17
- package/tests/plugins/plugin-same-different-image.test.js +0 -17
- package/tests/plugins/plugin-serial-reaction-time-mouse.test.js +0 -42
- package/tests/plugins/plugin-serial-reaction-time.test.js +0 -69
- package/tests/plugins/plugin-survey-html-form.test.js +0 -44
- package/tests/plugins/plugin-survey-likert.test.js +0 -48
- package/tests/plugins/plugin-survey-multi-choice.test.js +0 -48
- package/tests/plugins/plugin-survey-multi-select.test.js +0 -72
- package/tests/plugins/plugin-survey-text.test.js +0 -115
- package/tests/plugins/plugin-video-button-response.test.js +0 -35
- package/tests/plugins/plugin-video-keyboard-response.test.js +0 -35
- package/tests/plugins/plugin-video-slider-response.test.js +0 -34
- package/tests/plugins/plugin-visual-search-circle.test.js +0 -16
- package/tests/plugins/plugin-vsl-animate-occlusion.test.js +0 -16
- package/tests/plugins/plugin-vsl-grid-scene.test.js +0 -16
- package/tests/testing-utils.js +0 -13
|
@@ -1,493 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
-
|
|
4
|
-
<svg
|
|
5
|
-
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
6
|
-
xmlns:cc="http://creativecommons.org/ns#"
|
|
7
|
-
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
8
|
-
xmlns:svg="http://www.w3.org/2000/svg"
|
|
9
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
11
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
-
version="1.1"
|
|
13
|
-
id="svg3680"
|
|
14
|
-
xml:space="preserve"
|
|
15
|
-
width="340.36853"
|
|
16
|
-
height="226.6216"
|
|
17
|
-
viewBox="0 0 340.36853 226.6216"
|
|
18
|
-
sodipodi:docname="jspsych-logo-no-text-mono.svg"
|
|
19
|
-
inkscape:version="0.92.1 r15371"
|
|
20
|
-
inkscape:export-filename="C:\Users\Josh\Dropbox\jsPsych\jspsych-logo-no-text.png"
|
|
21
|
-
inkscape:export-xdpi="131.34"
|
|
22
|
-
inkscape:export-ydpi="131.34"><metadata
|
|
23
|
-
id="metadata3686"><rdf:RDF><cc:Work
|
|
24
|
-
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
|
25
|
-
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
|
26
|
-
id="defs3684"><clipPath
|
|
27
|
-
clipPathUnits="userSpaceOnUse"
|
|
28
|
-
id="clipPath3700"><path
|
|
29
|
-
d="M 0,271 H 474 V 0 H 0 Z"
|
|
30
|
-
id="path3698"
|
|
31
|
-
inkscape:connector-curvature="0" /></clipPath></defs><sodipodi:namedview
|
|
32
|
-
pagecolor="#ffffff"
|
|
33
|
-
bordercolor="#666666"
|
|
34
|
-
borderopacity="1"
|
|
35
|
-
objecttolerance="10"
|
|
36
|
-
gridtolerance="10"
|
|
37
|
-
guidetolerance="10"
|
|
38
|
-
inkscape:pageopacity="0"
|
|
39
|
-
inkscape:pageshadow="2"
|
|
40
|
-
inkscape:window-width="1920"
|
|
41
|
-
inkscape:window-height="1001"
|
|
42
|
-
id="namedview3682"
|
|
43
|
-
showgrid="false"
|
|
44
|
-
inkscape:zoom="2.2693726"
|
|
45
|
-
inkscape:cx="121.59559"
|
|
46
|
-
inkscape:cy="115.60594"
|
|
47
|
-
inkscape:window-x="2391"
|
|
48
|
-
inkscape:window-y="-9"
|
|
49
|
-
inkscape:window-maximized="1"
|
|
50
|
-
inkscape:current-layer="g3694"
|
|
51
|
-
fit-margin-top="24"
|
|
52
|
-
fit-margin-left="24"
|
|
53
|
-
fit-margin-right="24"
|
|
54
|
-
fit-margin-bottom="24" /><g
|
|
55
|
-
id="g3688"
|
|
56
|
-
inkscape:groupmode="layer"
|
|
57
|
-
inkscape:label="jspsych-logo"
|
|
58
|
-
transform="matrix(1.3333333,0,0,-1.3333333,-156.1236,344.56039)"><g
|
|
59
|
-
id="g3694"><g
|
|
60
|
-
transform="translate(270.4785,165.3169)"
|
|
61
|
-
id="g3702"
|
|
62
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
63
|
-
inkscape:connector-curvature="0"
|
|
64
|
-
id="path3704"
|
|
65
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
66
|
-
d="m 0,0 c 0,-7.729 -6.267,-13.997 -14,-13.997 -7.732,0 -14.001,6.268 -14.001,13.997 0,7.733 6.269,14.002 14.001,14.002 C -6.267,14.002 0,7.733 0,0" /></g><g
|
|
67
|
-
transform="translate(217.541,123.3291)"
|
|
68
|
-
id="g3706"
|
|
69
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
70
|
-
inkscape:connector-curvature="0"
|
|
71
|
-
id="path3708"
|
|
72
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
73
|
-
d="m 0,0 c 0,-7.729 -6.267,-13.994 -14,-13.994 -7.732,0 -14.001,6.265 -14.001,13.994 0,7.725 6.269,13.991 14.001,13.991 C -6.267,13.991 0,7.725 0,0" /></g><g
|
|
74
|
-
transform="translate(293.4795,138.3164)"
|
|
75
|
-
id="g3710"
|
|
76
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
77
|
-
inkscape:connector-curvature="0"
|
|
78
|
-
id="path3712"
|
|
79
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
80
|
-
d="m 0,0 c 0,-7.725 -6.267,-13.982 -14,-13.982 -7.732,0 -14.001,6.257 -14.001,13.982 0,7.734 6.269,14.003 14.001,14.003 C -6.267,14.003 0,7.734 0,0" /></g><g
|
|
81
|
-
transform="translate(262.4873,130.3223)"
|
|
82
|
-
id="g3714"
|
|
83
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
84
|
-
inkscape:connector-curvature="0"
|
|
85
|
-
id="path3716"
|
|
86
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
87
|
-
d="m 0,0 c 0,-5.85 -4.752,-10.603 -10.614,-10.603 -5.858,0 -10.609,4.753 -10.609,10.603 0,5.859 4.751,10.611 10.609,10.611 C -4.752,10.611 0,5.859 0,0" /></g><g
|
|
88
|
-
transform="translate(303.7871,162.2817)"
|
|
89
|
-
id="g3718"
|
|
90
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
91
|
-
inkscape:connector-curvature="0"
|
|
92
|
-
id="path3720"
|
|
93
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
94
|
-
d="m 0,0 c 0,-5.859 -4.752,-10.611 -10.614,-10.611 -5.862,0 -10.614,4.752 -10.614,10.611 0,5.863 4.752,10.616 10.614,10.616 C -4.752,10.616 0,5.863 0,0" /></g><g
|
|
95
|
-
transform="translate(212.1562,147.3887)"
|
|
96
|
-
id="g3722"
|
|
97
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
98
|
-
inkscape:connector-curvature="0"
|
|
99
|
-
id="path3724"
|
|
100
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
101
|
-
d="m 0,0 c 0,-3.496 -2.835,-6.332 -6.333,-6.332 -3.498,0 -6.334,2.836 -6.334,6.332 0,3.499 2.836,6.334 6.334,6.334 C -2.835,6.334 0,3.499 0,0" /></g><g
|
|
102
|
-
transform="translate(240.0127,132.0249)"
|
|
103
|
-
id="g3726"
|
|
104
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
105
|
-
inkscape:connector-curvature="0"
|
|
106
|
-
id="path3728"
|
|
107
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
108
|
-
d="m 0,0 c 0,-3.489 -2.834,-6.321 -6.332,-6.321 -3.498,0 -6.334,2.832 -6.334,6.321 0,3.497 2.836,6.333 6.334,6.333 C -2.834,6.333 0,3.497 0,0" /></g><g
|
|
109
|
-
transform="translate(306.4268,144.3188)"
|
|
110
|
-
id="g3730"
|
|
111
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
112
|
-
inkscape:connector-curvature="0"
|
|
113
|
-
id="path3732"
|
|
114
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
115
|
-
d="m 0,0 c 0,-3.496 -2.835,-6.332 -6.333,-6.332 -3.498,0 -6.333,2.836 -6.333,6.332 0,3.499 2.835,6.334 6.333,6.334 C -2.835,6.334 0,3.499 0,0" /></g><g
|
|
116
|
-
transform="translate(228.6377,112.7861)"
|
|
117
|
-
id="g3734"
|
|
118
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
119
|
-
inkscape:connector-curvature="0"
|
|
120
|
-
id="path3736"
|
|
121
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
122
|
-
d="m 0,0 c 0,-3.496 -2.836,-6.332 -6.334,-6.332 -3.498,0 -6.333,2.836 -6.333,6.332 0,3.498 2.835,6.334 6.333,6.334 C -2.836,6.334 0,3.498 0,0" /></g><g
|
|
123
|
-
transform="translate(228.2354,124.5215)"
|
|
124
|
-
id="g3738"
|
|
125
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
126
|
-
inkscape:connector-curvature="0"
|
|
127
|
-
id="path3740"
|
|
128
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
129
|
-
d="m 0,0 c 0,-2.101 -1.706,-3.806 -3.809,-3.806 -2.103,0 -3.808,1.705 -3.808,3.806 0,2.101 1.705,3.805 3.808,3.805 C -1.706,3.805 0,2.101 0,0" /></g><g
|
|
130
|
-
transform="translate(278.2354,156.7061)"
|
|
131
|
-
id="g3742"
|
|
132
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
133
|
-
inkscape:connector-curvature="0"
|
|
134
|
-
id="path3744"
|
|
135
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
136
|
-
d="m 0,0 c 0,-2.104 -1.706,-3.809 -3.809,-3.809 -2.103,0 -3.808,1.705 -3.808,3.809 0,2.103 1.705,3.809 3.808,3.809 C -1.706,3.809 0,2.103 0,0" /></g><g
|
|
137
|
-
transform="translate(239.9023,164.7754)"
|
|
138
|
-
id="g3746"
|
|
139
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
140
|
-
inkscape:connector-curvature="0"
|
|
141
|
-
id="path3748"
|
|
142
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
143
|
-
d="m 0,0 c 0,-2.103 -1.707,-3.808 -3.809,-3.808 -2.104,0 -3.809,1.705 -3.809,3.808 0,2.104 1.705,3.809 3.809,3.809 C -1.707,3.809 0,2.104 0,0" /></g><g
|
|
144
|
-
transform="translate(238.5674,111.8584)"
|
|
145
|
-
id="g3750"
|
|
146
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
147
|
-
inkscape:connector-curvature="0"
|
|
148
|
-
id="path3752"
|
|
149
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
150
|
-
d="m 0,0 c 0,-2.104 -1.705,-3.809 -3.809,-3.809 -2.103,0 -3.807,1.705 -3.807,3.809 0,2.104 1.704,3.809 3.807,3.809 C -1.705,3.809 0,2.104 0,0" /></g><g
|
|
151
|
-
transform="translate(319.5498,159.0034)"
|
|
152
|
-
id="g3754"
|
|
153
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
154
|
-
inkscape:connector-curvature="0"
|
|
155
|
-
id="path3756"
|
|
156
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
157
|
-
d="m 0,0 c 0,-2.104 -1.706,-3.809 -3.809,-3.809 -2.103,0 -3.807,1.705 -3.807,3.809 0,2.104 1.704,3.809 3.807,3.809 C -1.706,3.809 0,2.104 0,0" /></g><g
|
|
158
|
-
transform="translate(265.0596,144.313)"
|
|
159
|
-
id="g3758"
|
|
160
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
161
|
-
inkscape:connector-curvature="0"
|
|
162
|
-
id="path3760"
|
|
163
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
164
|
-
d="m 0,0 c 0,-2.103 -1.707,-3.808 -3.809,-3.808 -2.103,0 -3.808,1.705 -3.808,3.808 0,2.104 1.705,3.809 3.808,3.809 C -1.707,3.809 0,2.104 0,0" /></g><g
|
|
165
|
-
transform="translate(220.2705,138.8965)"
|
|
166
|
-
id="g3762"
|
|
167
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
168
|
-
inkscape:connector-curvature="0"
|
|
169
|
-
id="path3764"
|
|
170
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
171
|
-
d="m 0,0 c 0,-2.103 -1.707,-3.808 -3.809,-3.808 -2.103,0 -3.808,1.705 -3.808,3.808 0,2.104 1.705,3.809 3.808,3.809 C -1.707,3.809 0,2.104 0,0" /></g><g
|
|
172
|
-
transform="translate(281.3672,167.6523)"
|
|
173
|
-
id="g3766"
|
|
174
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
175
|
-
inkscape:connector-curvature="0"
|
|
176
|
-
id="path3768"
|
|
177
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
178
|
-
d="m 0,0 c 0,-2.103 -1.706,-3.808 -3.809,-3.808 -2.103,0 -3.807,1.705 -3.807,3.808 0,2.104 1.704,3.809 3.807,3.809 C -1.706,3.809 0,2.104 0,0" /></g><g
|
|
179
|
-
transform="translate(252.2354,146.7056)"
|
|
180
|
-
id="g3774"
|
|
181
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
182
|
-
inkscape:connector-curvature="0"
|
|
183
|
-
id="path3776"
|
|
184
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
185
|
-
d="m 0,0 c 0,-2.103 -1.706,-3.808 -3.809,-3.808 -2.103,0 -3.808,1.705 -3.808,3.808 0,2.104 1.705,3.809 3.808,3.809 C -1.706,3.809 0,2.104 0,0" /></g><g
|
|
186
|
-
transform="translate(311.2354,153.7056)"
|
|
187
|
-
id="g3778"
|
|
188
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
189
|
-
inkscape:connector-curvature="0"
|
|
190
|
-
id="path3780"
|
|
191
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
192
|
-
d="m 0,0 c 0,-2.103 -1.706,-3.808 -3.809,-3.808 -2.103,0 -3.808,1.705 -3.808,3.808 0,2.104 1.705,3.809 3.808,3.809 C -1.706,3.809 0,2.104 0,0" /></g><g
|
|
193
|
-
transform="translate(237.958,151.3179)"
|
|
194
|
-
id="g3782"
|
|
195
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
196
|
-
inkscape:connector-curvature="0"
|
|
197
|
-
id="path3784"
|
|
198
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
199
|
-
d="m 0,0 c 0,-5.858 -4.752,-10.612 -10.614,-10.612 -5.858,0 -10.609,4.754 -10.609,10.612 0,5.863 4.751,10.616 10.609,10.616 C -4.752,10.616 0,5.863 0,0" /></g><g
|
|
200
|
-
transform="translate(180.4268,145.812)"
|
|
201
|
-
id="g3786"
|
|
202
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
203
|
-
inkscape:connector-curvature="0"
|
|
204
|
-
id="path3788"
|
|
205
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
206
|
-
d="m 0,0 c 0,-3.497 -2.835,-6.333 -6.333,-6.333 -3.498,0 -6.333,2.836 -6.333,6.333 0,3.498 2.835,6.334 6.333,6.334 C -2.835,6.334 0,3.498 0,0" /></g><g
|
|
207
|
-
transform="translate(219.0283,174.7998)"
|
|
208
|
-
id="g3790"
|
|
209
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
210
|
-
inkscape:connector-curvature="0"
|
|
211
|
-
id="path3792"
|
|
212
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
213
|
-
d="m 0,0 c 0,-7.729 -6.268,-13.996 -14,-13.996 -7.732,0 -14.002,6.267 -14.002,13.996 0,7.734 6.27,14.003 14.002,14.003 C -6.268,14.003 0,7.734 0,0" /></g><g
|
|
214
|
-
transform="translate(163.0937,180.9414)"
|
|
215
|
-
id="g3794"
|
|
216
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
217
|
-
inkscape:connector-curvature="0"
|
|
218
|
-
id="path3796"
|
|
219
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
220
|
-
d="m 0,0 c 0,-7.729 -6.267,-13.996 -14,-13.996 -7.732,0 -14.001,6.267 -14.001,13.996 0,7.734 6.269,14.003 14.001,14.003 C -6.267,14.003 0,7.734 0,0" /></g><g
|
|
221
|
-
transform="translate(219.7939,213.999)"
|
|
222
|
-
id="g3798"
|
|
223
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
224
|
-
inkscape:connector-curvature="0"
|
|
225
|
-
id="path3800"
|
|
226
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
227
|
-
d="m 0,0 c 0,-7.729 -6.267,-13.996 -14,-13.996 -7.732,0 -14.001,6.267 -14.001,13.996 0,7.734 6.269,14.003 14.001,14.003 C -6.267,14.003 0,7.734 0,0" /></g><g
|
|
228
|
-
transform="translate(247.3955,222.7163)"
|
|
229
|
-
id="g3802"
|
|
230
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
231
|
-
inkscape:connector-curvature="0"
|
|
232
|
-
id="path3804"
|
|
233
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
234
|
-
d="m 0,0 c 0,-5.859 -4.752,-10.611 -10.613,-10.611 -5.862,0 -10.614,4.752 -10.614,10.611 0,5.863 4.752,10.615 10.614,10.615 C -4.752,10.615 0,5.863 0,0" /></g><g
|
|
235
|
-
transform="translate(181.041,164.7744)"
|
|
236
|
-
id="g3806"
|
|
237
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
238
|
-
inkscape:connector-curvature="0"
|
|
239
|
-
id="path3808"
|
|
240
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
241
|
-
d="m 0,0 c 0,-5.859 -4.752,-10.611 -10.614,-10.611 -5.862,0 -10.614,4.752 -10.614,10.611 0,5.863 4.752,10.615 10.614,10.615 C -4.752,10.615 0,5.863 0,0" /></g><g
|
|
242
|
-
transform="translate(176.708,207.5557)"
|
|
243
|
-
id="g3810"
|
|
244
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
245
|
-
inkscape:connector-curvature="0"
|
|
246
|
-
id="path3812"
|
|
247
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
248
|
-
d="m 0,0 c 0,-5.859 -4.752,-10.611 -10.615,-10.611 -5.862,0 -10.614,4.752 -10.614,10.611 0,5.863 4.752,10.615 10.614,10.615 C -4.752,10.615 0,5.863 0,0" /></g><g
|
|
249
|
-
transform="translate(157.4795,150.1606)"
|
|
250
|
-
id="g3814"
|
|
251
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
252
|
-
inkscape:connector-curvature="0"
|
|
253
|
-
id="path3816"
|
|
254
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
255
|
-
d="m 0,0 c 0,-5.859 -4.752,-10.611 -10.613,-10.611 -5.862,0 -10.614,4.752 -10.614,10.611 0,5.863 4.752,10.615 10.614,10.615 C -4.752,10.615 0,5.863 0,0" /></g><g
|
|
256
|
-
transform="translate(182.041,185.3882)"
|
|
257
|
-
id="g3818"
|
|
258
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
259
|
-
inkscape:connector-curvature="0"
|
|
260
|
-
id="path3820"
|
|
261
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
262
|
-
d="m 0,0 c 0,-3.496 -2.835,-6.332 -6.333,-6.332 -3.498,0 -6.334,2.836 -6.334,6.332 0,3.499 2.836,6.334 6.334,6.334 C -2.835,6.334 0,3.499 0,0" /></g><g
|
|
263
|
-
transform="translate(194.584,157.9946)"
|
|
264
|
-
id="g3822"
|
|
265
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
266
|
-
inkscape:connector-curvature="0"
|
|
267
|
-
id="path3824"
|
|
268
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
269
|
-
d="m 0,0 c 0,-3.496 -2.835,-6.332 -6.333,-6.332 -3.498,0 -6.333,2.836 -6.333,6.332 0,3.499 2.835,6.334 6.333,6.334 C -2.835,6.334 0,3.499 0,0" /></g><g
|
|
270
|
-
transform="translate(191.041,222.7173)"
|
|
271
|
-
id="g3826"
|
|
272
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
273
|
-
inkscape:connector-curvature="0"
|
|
274
|
-
id="path3828"
|
|
275
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
276
|
-
d="m 0,0 c 0,-3.496 -2.835,-6.332 -6.333,-6.332 -3.498,0 -6.334,2.836 -6.334,6.332 0,3.499 2.836,6.334 6.334,6.334 C -2.835,6.334 0,3.499 0,0" /></g><g
|
|
277
|
-
transform="translate(204.1084,193.9229)"
|
|
278
|
-
id="g3830"
|
|
279
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
280
|
-
inkscape:connector-curvature="0"
|
|
281
|
-
id="path3832"
|
|
282
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
283
|
-
d="m 0,0 c 0,-2.103 -1.706,-3.808 -3.809,-3.808 -2.103,0 -3.808,1.705 -3.808,3.808 0,2.104 1.705,3.809 3.808,3.809 C -1.706,3.809 0,2.104 0,0" /></g><g
|
|
284
|
-
transform="translate(223.834,235.9478)"
|
|
285
|
-
id="g3834"
|
|
286
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
287
|
-
inkscape:connector-curvature="0"
|
|
288
|
-
id="path3836"
|
|
289
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
290
|
-
d="m 0,0 c 0,-2.103 -1.706,-3.808 -3.809,-3.808 -2.103,0 -3.807,1.705 -3.807,3.808 0,2.104 1.704,3.809 3.807,3.809 C -1.706,3.809 0,2.104 0,0" /></g><g
|
|
291
|
-
transform="translate(255.8447,236.6113)"
|
|
292
|
-
id="g3838"
|
|
293
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
294
|
-
inkscape:connector-curvature="0"
|
|
295
|
-
id="path3840"
|
|
296
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
297
|
-
d="m 0,0 c 0,-2.103 -1.706,-3.808 -3.809,-3.808 -2.103,0 -3.808,1.705 -3.808,3.808 0,2.104 1.705,3.809 3.808,3.809 C -1.706,3.809 0,2.104 0,0" /></g><g
|
|
298
|
-
transform="translate(155.9014,131.3208)"
|
|
299
|
-
id="g3842"
|
|
300
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
301
|
-
inkscape:connector-curvature="0"
|
|
302
|
-
id="path3844"
|
|
303
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
304
|
-
d="m 0,0 c 0,-2.099 -1.705,-3.801 -3.809,-3.801 -2.103,0 -3.807,1.702 -3.807,3.801 0,2.102 1.704,3.807 3.807,3.807 C -1.705,3.807 0,2.102 0,0" /></g><g
|
|
305
|
-
transform="translate(186.377,128.5161)"
|
|
306
|
-
id="g3846"
|
|
307
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
308
|
-
inkscape:connector-curvature="0"
|
|
309
|
-
id="path3848"
|
|
310
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
311
|
-
d="m 0,0 c 0,-2.099 -1.706,-3.801 -3.809,-3.801 -2.103,0 -3.807,1.702 -3.807,3.801 0,2.101 1.704,3.805 3.807,3.805 C -1.706,3.805 0,2.101 0,0" /></g><g
|
|
312
|
-
transform="translate(233.0928,205.7705)"
|
|
313
|
-
id="g3850"
|
|
314
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
315
|
-
inkscape:connector-curvature="0"
|
|
316
|
-
id="path3852"
|
|
317
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
318
|
-
d="m 0,0 c 0,-3.496 -2.835,-6.332 -6.333,-6.332 -3.498,0 -6.333,2.836 -6.333,6.332 0,3.499 2.835,6.334 6.333,6.334 C -2.835,6.334 0,3.499 0,0" /></g><g
|
|
319
|
-
transform="translate(196.6279,145.7632)"
|
|
320
|
-
id="g3854"
|
|
321
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
322
|
-
inkscape:connector-curvature="0"
|
|
323
|
-
id="path3856"
|
|
324
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
325
|
-
d="m 0,0 c 0,-2.103 -1.707,-3.808 -3.809,-3.808 -2.103,0 -3.808,1.705 -3.808,3.808 0,2.104 1.705,3.809 3.808,3.809 C -1.707,3.809 0,2.104 0,0" /></g><g
|
|
326
|
-
transform="translate(192.041,203.7705)"
|
|
327
|
-
id="g3858"
|
|
328
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
329
|
-
inkscape:connector-curvature="0"
|
|
330
|
-
id="path3860"
|
|
331
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
332
|
-
d="m 0,0 c 0,-3.496 -2.835,-6.332 -6.333,-6.332 -3.498,0 -6.334,2.836 -6.334,6.332 0,3.499 2.836,6.334 6.334,6.334 C -2.835,6.334 0,3.499 0,0" /></g><g
|
|
333
|
-
transform="translate(172.4272,131.3208)"
|
|
334
|
-
id="g3862"
|
|
335
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
336
|
-
inkscape:connector-curvature="0"
|
|
337
|
-
id="path3864"
|
|
338
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
339
|
-
d="m 0,0 c 0,-3.491 -2.835,-6.323 -6.333,-6.323 -3.498,0 -6.334,2.832 -6.334,6.323 0,3.496 2.836,6.332 6.334,6.332 C -2.835,6.332 0,3.496 0,0" /></g><g
|
|
340
|
-
transform="translate(327.8945,176.7759)"
|
|
341
|
-
id="g3866"
|
|
342
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
343
|
-
inkscape:connector-curvature="0"
|
|
344
|
-
id="path3868"
|
|
345
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
346
|
-
d="m 0,0 c 0,-3.496 -2.836,-6.332 -6.334,-6.332 -3.497,0 -6.333,2.836 -6.333,6.332 0,3.499 2.836,6.334 6.333,6.334 C -2.836,6.334 0,3.499 0,0" /></g><g
|
|
347
|
-
transform="translate(328.3701,134.2197)"
|
|
348
|
-
id="g3870"
|
|
349
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
350
|
-
inkscape:connector-curvature="0"
|
|
351
|
-
id="path3872"
|
|
352
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
353
|
-
d="m 0,0 c 0,-2.101 -1.707,-3.804 -3.809,-3.804 -2.103,0 -3.808,1.703 -3.808,3.804 0,2.104 1.705,3.809 3.808,3.809 C -1.707,3.809 0,2.104 0,0" /></g><g
|
|
354
|
-
transform="translate(313.3701,134.3184)"
|
|
355
|
-
id="g3874"
|
|
356
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
357
|
-
inkscape:connector-curvature="0"
|
|
358
|
-
id="path3876"
|
|
359
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
360
|
-
d="m 0,0 c 0,-2.1 -1.706,-3.803 -3.809,-3.803 -2.103,0 -3.808,1.703 -3.808,3.803 0,2.104 1.705,3.809 3.808,3.809 C -1.706,3.809 0,2.104 0,0" /></g><g
|
|
361
|
-
transform="translate(354.3691,155.9951)"
|
|
362
|
-
id="g3878"
|
|
363
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
364
|
-
inkscape:connector-curvature="0"
|
|
365
|
-
id="path3880"
|
|
366
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
367
|
-
d="m 0,0 c 0,-2.103 -1.706,-3.808 -3.809,-3.808 -2.103,0 -3.807,1.705 -3.807,3.808 0,2.104 1.704,3.809 3.807,3.809 C -1.706,3.809 0,2.104 0,0" /></g><g
|
|
368
|
-
transform="translate(341.9834,185.561)"
|
|
369
|
-
id="g3882"
|
|
370
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
371
|
-
inkscape:connector-curvature="0"
|
|
372
|
-
id="path3884"
|
|
373
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
374
|
-
d="m 0,0 c 0,-2.103 -1.707,-3.808 -3.809,-3.808 -2.103,0 -3.808,1.705 -3.808,3.808 0,2.104 1.705,3.809 3.808,3.809 C -1.707,3.809 0,2.104 0,0" /></g><g
|
|
375
|
-
transform="translate(349.3154,141.6274)"
|
|
376
|
-
id="g3886"
|
|
377
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
378
|
-
inkscape:connector-curvature="0"
|
|
379
|
-
id="path3888"
|
|
380
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
381
|
-
d="m 0,0 c 0,-3.496 -2.834,-6.332 -6.332,-6.332 -3.498,0 -6.334,2.836 -6.334,6.332 0,3.499 2.836,6.334 6.334,6.334 C -2.834,6.334 0,3.499 0,0" /></g><g
|
|
382
|
-
transform="translate(350.1221,169.8418)"
|
|
383
|
-
id="g3890"
|
|
384
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
385
|
-
inkscape:connector-curvature="0"
|
|
386
|
-
id="path3892"
|
|
387
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
388
|
-
d="m 0,0 c 0,-5.859 -4.752,-10.611 -10.614,-10.611 -5.862,0 -10.614,4.752 -10.614,10.611 0,5.863 4.752,10.615 10.614,10.615 C -4.752,10.615 0,5.863 0,0" /></g><g
|
|
389
|
-
transform="translate(334.8945,148.9609)"
|
|
390
|
-
id="g3894"
|
|
391
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
392
|
-
inkscape:connector-curvature="0"
|
|
393
|
-
id="path3896"
|
|
394
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
395
|
-
d="m 0,0 c 0,-3.496 -2.835,-6.332 -6.333,-6.332 -3.498,0 -6.333,2.836 -6.333,6.332 0,3.499 2.835,6.334 6.333,6.334 C -2.835,6.334 0,3.499 0,0" /></g><g
|
|
396
|
-
transform="translate(328.3691,162.8115)"
|
|
397
|
-
id="g3898"
|
|
398
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
399
|
-
inkscape:connector-curvature="0"
|
|
400
|
-
id="path3900"
|
|
401
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
402
|
-
d="m 0,0 c 0,-2.103 -1.706,-3.808 -3.809,-3.808 -2.103,0 -3.807,1.705 -3.807,3.808 0,2.104 1.704,3.809 3.807,3.809 C -1.706,3.809 0,2.104 0,0" /></g><g
|
|
403
|
-
transform="translate(319.5498,144.3193)"
|
|
404
|
-
id="g3902"
|
|
405
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
406
|
-
inkscape:connector-curvature="0"
|
|
407
|
-
id="path3904"
|
|
408
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
409
|
-
d="m 0,0 c 0,-2.103 -1.706,-3.808 -3.809,-3.808 -2.103,0 -3.807,1.705 -3.807,3.808 0,2.104 1.704,3.809 3.807,3.809 C -1.706,3.809 0,2.104 0,0" /></g><g
|
|
410
|
-
transform="translate(270.0937,203.9995)"
|
|
411
|
-
id="g3906"
|
|
412
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
413
|
-
inkscape:connector-curvature="0"
|
|
414
|
-
id="path3908"
|
|
415
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
416
|
-
d="m 0,0 c 0,-7.729 -6.267,-13.996 -14,-13.996 -7.732,0 -14.001,6.267 -14.001,13.996 0,7.734 6.269,14.003 14.001,14.003 C -6.267,14.003 0,7.734 0,0" /></g><g
|
|
417
|
-
transform="translate(306.5967,189)"
|
|
418
|
-
id="g3910"
|
|
419
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
420
|
-
inkscape:connector-curvature="0"
|
|
421
|
-
id="path3912"
|
|
422
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
423
|
-
d="m 0,0 c 0,-7.729 -6.268,-13.996 -14,-13.996 -7.732,0 -14.002,6.267 -14.002,13.996 0,7.734 6.27,14.003 14.002,14.003 C -6.268,14.003 0,7.734 0,0" /></g><g
|
|
424
|
-
transform="translate(246.707,184.3882)"
|
|
425
|
-
id="g3914"
|
|
426
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
427
|
-
inkscape:connector-curvature="0"
|
|
428
|
-
id="path3916"
|
|
429
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
430
|
-
d="m 0,0 c 0,-5.859 -4.752,-10.611 -10.614,-10.611 -5.862,0 -10.614,4.752 -10.614,10.611 0,5.863 4.752,10.615 10.614,10.615 C -4.752,10.615 0,5.863 0,0" /></g><g
|
|
431
|
-
transform="translate(293.1729,226.0005)"
|
|
432
|
-
id="g3918"
|
|
433
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
434
|
-
inkscape:connector-curvature="0"
|
|
435
|
-
id="path3920"
|
|
436
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
437
|
-
d="m 0,0 c 0,-5.859 -4.752,-10.611 -10.614,-10.611 -5.862,0 -10.614,4.752 -10.614,10.611 0,5.863 4.752,10.615 10.614,10.615 C -4.752,10.615 0,5.863 0,0" /></g><g
|
|
438
|
-
transform="translate(332.7881,195.3877)"
|
|
439
|
-
id="g3922"
|
|
440
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
441
|
-
inkscape:connector-curvature="0"
|
|
442
|
-
id="path3924"
|
|
443
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
444
|
-
d="m 0,0 c 0,-5.859 -4.752,-10.611 -10.614,-10.611 -5.862,0 -10.614,4.752 -10.614,10.611 0,5.863 4.752,10.615 10.614,10.615 C -4.752,10.615 0,5.863 0,0" /></g><g
|
|
445
|
-
transform="translate(274.4238,183.7744)"
|
|
446
|
-
id="g3926"
|
|
447
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
448
|
-
inkscape:connector-curvature="0"
|
|
449
|
-
id="path3928"
|
|
450
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
451
|
-
d="m 0,0 c 0,-3.496 -2.835,-6.332 -6.333,-6.332 -3.498,0 -6.334,2.836 -6.334,6.332 0,3.499 2.836,6.334 6.334,6.334 C -2.835,6.334 0,3.499 0,0" /></g><g
|
|
452
|
-
transform="translate(284.0801,207.1611)"
|
|
453
|
-
id="g3930"
|
|
454
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
455
|
-
inkscape:connector-curvature="0"
|
|
456
|
-
id="path3932"
|
|
457
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
458
|
-
d="m 0,0 c 0,-3.496 -2.835,-6.332 -6.333,-6.332 -3.498,0 -6.333,2.836 -6.333,6.332 0,3.499 2.835,6.334 6.333,6.334 C -2.835,6.334 0,3.499 0,0" /></g><g
|
|
459
|
-
transform="translate(312.9336,207.5562)"
|
|
460
|
-
id="g3934"
|
|
461
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
462
|
-
inkscape:connector-curvature="0"
|
|
463
|
-
id="path3936"
|
|
464
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
465
|
-
d="m 0,0 c 0,-3.496 -2.835,-6.332 -6.333,-6.332 -3.498,0 -6.334,2.836 -6.334,6.332 0,3.499 2.836,6.334 6.334,6.334 C -2.835,6.334 0,3.499 0,0" /></g><g
|
|
466
|
-
transform="translate(312.3691,172.9443)"
|
|
467
|
-
id="g3938"
|
|
468
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
469
|
-
inkscape:connector-curvature="0"
|
|
470
|
-
id="path3940"
|
|
471
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
472
|
-
d="m 0,0 c 0,-2.103 -1.706,-3.808 -3.809,-3.808 -2.103,0 -3.807,1.705 -3.807,3.808 0,2.104 1.704,3.809 3.807,3.809 C -1.706,3.809 0,2.104 0,0" /></g><g
|
|
473
|
-
transform="translate(306.7861,223.8062)"
|
|
474
|
-
id="g3942"
|
|
475
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
476
|
-
inkscape:connector-curvature="0"
|
|
477
|
-
id="path3944"
|
|
478
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
479
|
-
d="m 0,0 c 0,-2.103 -1.706,-3.808 -3.809,-3.808 -2.103,0 -3.808,1.705 -3.808,3.808 0,2.104 1.705,3.809 3.808,3.809 C -1.706,3.809 0,2.104 0,0" /></g><g
|
|
480
|
-
transform="translate(271.0937,234.9478)"
|
|
481
|
-
id="g3946"
|
|
482
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
483
|
-
inkscape:connector-curvature="0"
|
|
484
|
-
id="path3948"
|
|
485
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
486
|
-
d="m 0,0 c 0,-2.103 -1.706,-3.808 -3.809,-3.808 -2.103,0 -3.807,1.705 -3.807,3.808 0,2.104 1.704,3.809 3.807,3.809 C -1.706,3.809 0,2.104 0,0" /></g><g
|
|
487
|
-
transform="translate(268.8672,222.7178)"
|
|
488
|
-
id="g3950"
|
|
489
|
-
style="fill:#ffffff;fill-opacity:1"><path
|
|
490
|
-
inkscape:connector-curvature="0"
|
|
491
|
-
id="path3952"
|
|
492
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
493
|
-
d="m 0,0 c 0,-2.103 -1.706,-3.808 -3.809,-3.808 -2.103,0 -3.807,1.705 -3.807,3.808 0,2.104 1.704,3.809 3.807,3.809 C -1.706,3.809 0,2.104 0,0" /></g></g></g></svg>
|
|
Binary file
|
package/docs/img/orange.png
DELETED
|
Binary file
|
package/docs/img/palmer_stim.png
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/docs/index.md
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-

|
|
4
|
-
|
|
5
|
-
jsPsych is a JavaScript library for running behavioral experiments in a web browser. The library provides a flexible framework for building a wide range of laboratory-like experiments that can be run online.
|
|
6
|
-
|
|
7
|
-
To use jsPsych, you provide a description of the experiment in the form of [a timeline](overview/timeline.md). jsPsych handles things like determining which trial to run next, storing data, and randomization. jsPsych uses *plugins* to define what to do at each point on the timeline. Plugins are ready-made templates for simple experimental tasks like displaying instructions or displaying a stimulus and collecting a keyboard response. Plugins are very flexible to support a wide variety of experiments. It is easy to create your own plugin if you have experience with JavaScript programming.
|
|
8
|
-
|
|
9
|
-
[The page on timelines](overview/timeline.md) is a good place to start learning about jsPsych. From there, you might want to complete the [Hello World! tutorial](tutorials/hello-world.md) and the [reaction time experiment tutorial](tutorials/rt-task.md).
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
# Browser and Device Support
|
|
2
|
-
|
|
3
|
-
## Desktop and Laptop Browsers
|
|
4
|
-
|
|
5
|
-
**Supported**
|
|
6
|
-
|
|
7
|
-
jsPsych supports recent versions of the four most commonly-used web browsers:
|
|
8
|
-
|
|
9
|
-
* Chrome
|
|
10
|
-
* Firefox
|
|
11
|
-
* Safari
|
|
12
|
-
* Edge
|
|
13
|
-
|
|
14
|
-
This means that jsPsych _should_ work on these browsers. If something doesn't work as you expect on one of the browsers above, it might be a bug that should be fixed. You can search for and report bugs on the [jsPsych GitHub Issues page](https://github.com/jspsych/jsPsych/issues). We're very grateful for anyone who takes the time to report bugs - it helps improve the library for everyone!
|
|
15
|
-
|
|
16
|
-
**Unsupported**
|
|
17
|
-
|
|
18
|
-
There are many other web browsers that are available, but that are not commonly used. The most well-known of these are Internet Explorer and Opera. jsPsych is not tested on these and other browsers not listed in the Supported section above. jsPsych experiments _might_ work in these browsers, but they _might not_. If you want to give participants the option to use unsupported browsers, then we recommend carefully testing your experiment to make sure that everything works as expected. Otherwise, we suggest asking your participants to only use a supported browser, or incorporating browser, device, and/or feature checks at the start of your experiment. jsPsych offers built-in methods for [exclusion based on minimum browser size and WebAudio API compatibility](exclude-browser.md). You can incorporate other browser/device/feature checks into your experiment by adding custom JavaScript code.
|
|
19
|
-
|
|
20
|
-
## Mobile Devices
|
|
21
|
-
|
|
22
|
-
In general, jsPsych experiments can be run on mobile devices (smartphones and tablets). However, certain plugins will not work on mobile. For instance, any plugin that requires a keyboard response without a text input box, such as the *-keyboard-response plugins, will not work. Even plugins that do work on mobile might work differently than they do on desktop and laptop computers. For instance, on mobile devices, a text input box will cause an on-screen keyboard to pop up, which affects the visible content on the screen.
|
|
23
|
-
|
|
24
|
-
If you plan to run an experiment that allows people to use mobile devices, we recommend doing some extra testing to make sure that everything works as expected. In particular, you may want to check that:
|
|
25
|
-
* Font sizes are readable on smaller screens
|
|
26
|
-
* Stimuli sizes are large enough and appropriate for the task
|
|
27
|
-
* Page is laid out as intended (e.g. elements are centered and do not overlap)
|
|
28
|
-
* Response options are touchscreen-friendly (e.g. buttons rather than key presses)
|
|
29
|
-
* Response options (e.g. buttons, text boxes, radio buttons) are large enough and far enough apart to be easily selected with a finger tap
|
|
30
|
-
|
|
31
|
-
It's possible to use your browser's developer tools to emulate mobile devices ([this page shows how to do it in Chrome](https://developers.google.com/web/tools/chrome-devtools/device-mode)), which is useful for getting a sense of how your experiment will look on mobile devices. Just be aware that there are limitations to emulator tools, and there are some aspects of mobile devices/browsers that a desktop browser will not be able to simulate.
|
|
32
|
-
|
|
33
|
-
## Mobile Browsers
|
|
34
|
-
|
|
35
|
-
The browser options for mobile phones and tablets are slightly different than those for desktop and laptop computers. In addition to mobile versions of Chrome, Firefox, Safari, and Edge, other notable mobile browsers include Opera Mobile, Samsung Internet, UC Browser, and Dolphin. Because of the greater diversity of mobile browsers and volatility in their usage statistics, jsPsych does not officially support any particular set of mobile browsers. However, we do anticipate that most experiments should work in most mobile browsers, especially the mobile versions of browsers that we do support in Desktop mode. If you run into a problem using jsPsych in mobile browsers, please report it on the [jsPsych GitHub Issues page](https://github.com/jspsych/jsPsych/issues)! We do our best to fix browser incompatibilities that are not specific to a single experiment.
|