├── .github └── workflows │ └── main.yml ├── .gitignore ├── README.md ├── dichotic-listening ├── index.html ├── jspsych-6.1.0 │ ├── css │ │ └── jspsych.css │ ├── jspsych.js │ └── plugins │ │ ├── jspsych-animation.js │ │ ├── jspsych-audio-button-response.js │ │ ├── jspsych-audio-keyboard-response.js │ │ ├── jspsych-audio-slider-response.js │ │ ├── jspsych-call-function.js │ │ ├── jspsych-categorize-animation.js │ │ ├── jspsych-categorize-html.js │ │ ├── jspsych-categorize-image.js │ │ ├── jspsych-cloze.js │ │ ├── jspsych-external-html.js │ │ ├── jspsych-free-sort.js │ │ ├── jspsych-fullscreen.js │ │ ├── jspsych-html-button-response.js │ │ ├── jspsych-html-keyboard-response.js │ │ ├── jspsych-html-slider-response.js │ │ ├── jspsych-iat-html.js │ │ ├── jspsych-iat-image.js │ │ ├── jspsych-image-button-response.js │ │ ├── jspsych-image-keyboard-response.js │ │ ├── jspsych-image-slider-response.js │ │ ├── jspsych-instructions.js │ │ ├── jspsych-rdk.js │ │ ├── jspsych-reconstruction.js │ │ ├── jspsych-resize.js │ │ ├── jspsych-same-different-html.js │ │ ├── jspsych-same-different-image.js │ │ ├── jspsych-serial-reaction-time-mouse.js │ │ ├── jspsych-serial-reaction-time.js │ │ ├── jspsych-survey-html-form.js │ │ ├── jspsych-survey-likert.js │ │ ├── jspsych-survey-multi-choice.js │ │ ├── jspsych-survey-multi-select.js │ │ ├── jspsych-survey-text.js │ │ ├── jspsych-video-button-response.js │ │ ├── jspsych-video-keyboard-response.js │ │ ├── jspsych-video-slider-response.js │ │ ├── jspsych-visual-search-circle.js │ │ ├── jspsych-vsl-animate-occlusion.js │ │ ├── jspsych-vsl-grid-scene.js │ │ └── template │ │ └── jspsych-plugin-template.js ├── mp3 │ ├── 10_Kid_R_Let_L.mp3 │ ├── 11_Fan_R_Mop_L.mp3 │ ├── 12_Ten_R_Sad_L.mp3 │ ├── 13_Bus_R_Pail_L.mp3 │ ├── 14_Give_R_Tap_L.mp3 │ ├── 15_Lock_R_Wet_L.mp3 │ ├── 16_Roll_R_Hug_L.mp3 │ ├── 17_Fall_R_Cat_L.mp3 │ ├── 18_Win_R_Dog_L.mp3 │ ├── 19_More_R_Bed_L.mp3 │ ├── 1_Cat_R_Fall_L.mp3 │ ├── 20_Neck_R_Puff_L.mp3 │ ├── 21_Gap_R_Some_L.mp3 │ ├── 22_Jet_R_Bug_L.mp3 │ ├── 23_Hen_R_Tub_L.mp3 │ ├── 24_Came_R_Pig_L.mp3 │ ├── 25_Jam_R_Sun_L.mp3 │ ├── 26_Let_R_Kid_L.mp3 │ ├── 27_Mop_R_Fan_L.mp3 │ ├── 28_Sad_R_Ten_L.mp3 │ ├── 29_Pail_R_Bus_L.mp3 │ ├── 2_Dog_R_Win_L.mp3 │ ├── 30_Tap_R_Give_L.mp3 │ ├── 31_Wet_R_Lock_L.mp3 │ ├── 32_Hug_R_Roll_L.mp3 │ ├── 3_Bed_R_More_L.mp3 │ ├── 4_Puff_R_Neck_L.mp3 │ ├── 5_Some_R_Gap_L.mp3 │ ├── 6_Bug_R_Jet_L.mp3 │ ├── 7_Tub_R_Hen_L.mp3 │ ├── 8_Pig_R_Came_L.mp3 │ └── 9_Sun_R_Jam_L.mp3 └── readme.md ├── docs ├── css │ └── jspsych.css ├── img │ ├── blue.png │ └── orange.png ├── jspsych.js ├── plugins │ ├── jspsych-animation.js │ ├── jspsych-audio-button-response.js │ ├── jspsych-audio-keyboard-response.js │ ├── jspsych-audio-slider-response.js │ ├── jspsych-call-function.js │ ├── jspsych-categorize-animation.js │ ├── jspsych-categorize-html.js │ ├── jspsych-categorize-image.js │ ├── jspsych-cloze.js │ ├── jspsych-external-html.js │ ├── jspsych-free-sort.js │ ├── jspsych-fullscreen.js │ ├── jspsych-html-button-response.js │ ├── jspsych-html-keyboard-response.js │ ├── jspsych-html-slider-response.js │ ├── jspsych-iat-html.js │ ├── jspsych-iat-image.js │ ├── jspsych-image-button-response.js │ ├── jspsych-image-keyboard-response.js │ ├── jspsych-image-slider-response.js │ ├── jspsych-instructions.js │ ├── jspsych-rdk.js │ ├── jspsych-reconstruction.js │ ├── jspsych-resize.js │ ├── jspsych-same-different-html.js │ ├── jspsych-same-different-image.js │ ├── jspsych-serial-reaction-time-mouse.js │ ├── jspsych-serial-reaction-time.js │ ├── jspsych-survey-html-form.js │ ├── jspsych-survey-likert.js │ ├── jspsych-survey-multi-choice.js │ ├── jspsych-survey-multi-select.js │ ├── jspsych-survey-text.js │ ├── jspsych-video-button-response.js │ ├── jspsych-video-keyboard-response.js │ ├── jspsych-video-slider-response.js │ ├── jspsych-visual-search-circle.js │ ├── jspsych-vsl-animate-occlusion.js │ ├── jspsych-vsl-grid-scene.js │ └── template │ │ └── jspsych-plugin-template.js └── rt-task_main.js ├── flanker ├── README.md ├── demo-flanker-qualtrics.js ├── demo-flanker-transformed-with-display-element.html ├── demo-flanker-transformed.html ├── demo-flanker.html ├── flanker_main.js ├── img │ ├── con1.png │ ├── con2.png │ ├── inc1.png │ └── inc2.png └── jspsych-6.1.0 │ ├── css │ └── jspsych.css │ ├── jspsych.js │ └── plugins │ ├── jspsych-animation.js │ ├── jspsych-audio-button-response.js │ ├── jspsych-audio-keyboard-response.js │ ├── jspsych-audio-slider-response.js │ ├── jspsych-call-function.js │ ├── jspsych-categorize-animation.js │ ├── jspsych-categorize-html.js │ ├── jspsych-categorize-image.js │ ├── jspsych-cloze.js │ ├── jspsych-external-html.js │ ├── jspsych-free-sort.js │ ├── jspsych-fullscreen.js │ ├── jspsych-html-button-response.js │ ├── jspsych-html-keyboard-response.js │ ├── jspsych-html-slider-response.js │ ├── jspsych-iat-html.js │ ├── jspsych-iat-image.js │ ├── jspsych-image-button-response.js │ ├── jspsych-image-keyboard-response.js │ ├── jspsych-image-slider-response.js │ ├── jspsych-instructions.js │ ├── jspsych-rdk.js │ ├── jspsych-reconstruction.js │ ├── jspsych-resize.js │ ├── jspsych-same-different-html.js │ ├── jspsych-same-different-image.js │ ├── jspsych-serial-reaction-time-mouse.js │ ├── jspsych-serial-reaction-time.js │ ├── jspsych-survey-html-form.js │ ├── jspsych-survey-likert.js │ ├── jspsych-survey-multi-choice.js │ ├── jspsych-survey-multi-select.js │ ├── jspsych-survey-text.js │ ├── jspsych-video-button-response.js │ ├── jspsych-video-keyboard-response.js │ ├── jspsych-video-slider-response.js │ ├── jspsych-visual-search-circle.js │ ├── jspsych-vsl-animate-occlusion.js │ ├── jspsych-vsl-grid-scene.js │ └── template │ └── jspsych-plugin-template.js ├── hello-world ├── experiment-with-display-element-save-dropbox.html ├── experiment-with-display-element-save-php.html ├── experiment-with-display-element.html ├── experiment.html ├── jspsych-6.1.0 │ ├── css │ │ └── jspsych.css │ ├── jspsych.js │ └── plugins │ │ ├── jspsych-animation.js │ │ ├── jspsych-audio-button-response.js │ │ ├── jspsych-audio-keyboard-response.js │ │ ├── jspsych-audio-slider-response.js │ │ ├── jspsych-call-function.js │ │ ├── jspsych-categorize-animation.js │ │ ├── jspsych-categorize-html.js │ │ ├── jspsych-categorize-image.js │ │ ├── jspsych-cloze.js │ │ ├── jspsych-external-html.js │ │ ├── jspsych-free-sort.js │ │ ├── jspsych-fullscreen.js │ │ ├── jspsych-html-button-response.js │ │ ├── jspsych-html-keyboard-response.js │ │ ├── jspsych-html-slider-response.js │ │ ├── jspsych-iat-html.js │ │ ├── jspsych-iat-image.js │ │ ├── jspsych-image-button-response.js │ │ ├── jspsych-image-keyboard-response.js │ │ ├── jspsych-image-slider-response.js │ │ ├── jspsych-instructions.js │ │ ├── jspsych-rdk.js │ │ ├── jspsych-reconstruction.js │ │ ├── jspsych-resize.js │ │ ├── jspsych-same-different-html.js │ │ ├── jspsych-same-different-image.js │ │ ├── jspsych-serial-reaction-time-mouse.js │ │ ├── jspsych-serial-reaction-time.js │ │ ├── jspsych-survey-html-form.js │ │ ├── jspsych-survey-likert.js │ │ ├── jspsych-survey-multi-choice.js │ │ ├── jspsych-survey-multi-select.js │ │ ├── jspsych-survey-text.js │ │ ├── jspsych-video-button-response.js │ │ ├── jspsych-video-keyboard-response.js │ │ ├── jspsych-video-slider-response.js │ │ ├── jspsych-visual-search-circle.js │ │ ├── jspsych-vsl-animate-occlusion.js │ │ ├── jspsych-vsl-grid-scene.js │ │ └── template │ │ └── jspsych-plugin-template.js ├── qualtrics-save-dropbox.js ├── qualtrics-save-php.js ├── qualtrics.js └── save_data.php ├── mkdocs.yml ├── mkdocs ├── audio-test.md ├── choose-and-solve.md ├── dichotic-listening.md ├── flanker.md ├── github-pages.md ├── hello-world.md ├── img │ ├── flanker-qualtrics-Step5_move_block.jpg │ ├── flanker-qualtrics-Step6_show_data.jpg │ ├── github-pages-Step1_Fork_the_jsPsych_repo.jpg │ ├── github-pages-Step2_Click_the_Settings_button.jpg │ ├── github-pages-Step3_Enable_GitHub_Pages.jpg │ ├── hello-world-qualtrics-Step1_add_javascript_to_question.jpg │ ├── hello-world-qualtrics-Step2_open_javascript_editor.jpg │ ├── hello-world-qualtrics-Step3_after_copy_paste.jpg │ ├── hello-world-qualtrics-Step3_open_question_html_editor.jpg │ ├── rt-task-hosting_Enable_GitHub_Pages.jpg │ ├── rt-task-qualtrics-Step5_move_block.jpg │ ├── rt-task-qualtrics-Step6_show_data.jpg │ ├── rt-task-start_RT_task_folder.jpg │ ├── save-dropbox-Step1_app_console.jpg │ ├── save-dropbox-Step2_give_permissions.jpg │ ├── save-dropbox-Step3_access_token.jpg │ ├── save-dropbox-Step6_unlink_app.jpg │ └── save-php-Step6_participant_id.jpg ├── index.md ├── mood-induction.md ├── n-back.md ├── participants.md ├── rc-rage.md ├── rt-task.md ├── save-dropbox.md ├── save-php.md └── stop-it.md ├── n-back ├── full-experiment.html ├── index.html ├── jspsych-6.1.0 │ ├── css │ │ └── jspsych.css │ ├── jspsych.js │ └── plugins │ │ ├── jspsych-animation.js │ │ ├── jspsych-audio-button-response.js │ │ ├── jspsych-audio-keyboard-response.js │ │ ├── jspsych-audio-slider-response.js │ │ ├── jspsych-call-function.js │ │ ├── jspsych-categorize-animation.js │ │ ├── jspsych-categorize-html.js │ │ ├── jspsych-categorize-image.js │ │ ├── jspsych-cloze.js │ │ ├── jspsych-external-html.js │ │ ├── jspsych-free-sort.js │ │ ├── jspsych-fullscreen.js │ │ ├── jspsych-html-button-response.js │ │ ├── jspsych-html-keyboard-response.js │ │ ├── jspsych-html-slider-response.js │ │ ├── jspsych-iat-html.js │ │ ├── jspsych-iat-image.js │ │ ├── jspsych-image-button-response.js │ │ ├── jspsych-image-keyboard-response.js │ │ ├── jspsych-image-slider-response.js │ │ ├── jspsych-instructions.js │ │ ├── jspsych-rdk.js │ │ ├── jspsych-reconstruction.js │ │ ├── jspsych-resize.js │ │ ├── jspsych-same-different-html.js │ │ ├── jspsych-same-different-image.js │ │ ├── jspsych-serial-reaction-time-mouse.js │ │ ├── jspsych-serial-reaction-time.js │ │ ├── jspsych-survey-html-form.js │ │ ├── jspsych-survey-likert.js │ │ ├── jspsych-survey-multi-choice.js │ │ ├── jspsych-survey-multi-select.js │ │ ├── jspsych-survey-text.js │ │ ├── jspsych-video-button-response.js │ │ ├── jspsych-video-keyboard-response.js │ │ ├── jspsych-video-slider-response.js │ │ ├── jspsych-visual-search-circle.js │ │ ├── jspsych-vsl-animate-occlusion.js │ │ ├── jspsych-vsl-grid-scene.js │ │ └── template │ │ └── jspsych-plugin-template.js └── readme.md └── rt-task ├── demo-simple-rt-task-qualtrics.js ├── demo-simple-rt-task-transformed-with-display-element.html ├── demo-simple-rt-task-transformed.html ├── demo-simple-rt-task.html ├── img ├── blue.png └── orange.png ├── jspsych-6.1.0 ├── css │ └── jspsych.css ├── jspsych.js └── plugins │ ├── jspsych-animation.js │ ├── jspsych-audio-button-response.js │ ├── jspsych-audio-keyboard-response.js │ ├── jspsych-audio-slider-response.js │ ├── jspsych-call-function.js │ ├── jspsych-categorize-animation.js │ ├── jspsych-categorize-html.js │ ├── jspsych-categorize-image.js │ ├── jspsych-cloze.js │ ├── jspsych-external-html.js │ ├── jspsych-free-sort.js │ ├── jspsych-fullscreen.js │ ├── jspsych-html-button-response.js │ ├── jspsych-html-keyboard-response.js │ ├── jspsych-html-slider-response.js │ ├── jspsych-iat-html.js │ ├── jspsych-iat-image.js │ ├── jspsych-image-button-response.js │ ├── jspsych-image-keyboard-response.js │ ├── jspsych-image-slider-response.js │ ├── jspsych-instructions.js │ ├── jspsych-rdk.js │ ├── jspsych-reconstruction.js │ ├── jspsych-resize.js │ ├── jspsych-same-different-html.js │ ├── jspsych-same-different-image.js │ ├── jspsych-serial-reaction-time-mouse.js │ ├── jspsych-serial-reaction-time.js │ ├── jspsych-survey-html-form.js │ ├── jspsych-survey-likert.js │ ├── jspsych-survey-multi-choice.js │ ├── jspsych-survey-multi-select.js │ ├── jspsych-survey-text.js │ ├── jspsych-video-button-response.js │ ├── jspsych-video-keyboard-response.js │ ├── jspsych-video-slider-response.js │ ├── jspsych-visual-search-circle.js │ ├── jspsych-vsl-animate-occlusion.js │ ├── jspsych-vsl-grid-scene.js │ └── template │ └── jspsych-plugin-template.js └── rt-task_main.js /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /site/* 2 | .vscode -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/README.md -------------------------------------------------------------------------------- /dichotic-listening/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/index.html -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/css/jspsych.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/css/jspsych.css -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/jspsych.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/jspsych.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-animation.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-audio-button-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-audio-button-response.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-audio-keyboard-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-audio-keyboard-response.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-audio-slider-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-audio-slider-response.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-call-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-call-function.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-categorize-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-categorize-animation.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-categorize-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-categorize-html.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-categorize-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-categorize-image.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-cloze.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-cloze.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-external-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-external-html.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-free-sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-free-sort.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-fullscreen.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-html-button-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-html-button-response.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-html-keyboard-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-html-keyboard-response.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-html-slider-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-html-slider-response.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-iat-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-iat-html.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-iat-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-iat-image.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-image-button-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-image-button-response.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-image-keyboard-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-image-keyboard-response.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-image-slider-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-image-slider-response.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-instructions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-instructions.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-rdk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-rdk.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-reconstruction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-reconstruction.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-resize.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-same-different-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-same-different-html.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-same-different-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-same-different-image.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-serial-reaction-time-mouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-serial-reaction-time-mouse.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-serial-reaction-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-serial-reaction-time.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-survey-html-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-survey-html-form.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-survey-likert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-survey-likert.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-survey-multi-choice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-survey-multi-choice.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-survey-multi-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-survey-multi-select.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-survey-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-survey-text.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-video-button-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-video-button-response.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-video-keyboard-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-video-keyboard-response.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-video-slider-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-video-slider-response.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-visual-search-circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-visual-search-circle.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-vsl-animate-occlusion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-vsl-animate-occlusion.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/jspsych-vsl-grid-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/jspsych-vsl-grid-scene.js -------------------------------------------------------------------------------- /dichotic-listening/jspsych-6.1.0/plugins/template/jspsych-plugin-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/jspsych-6.1.0/plugins/template/jspsych-plugin-template.js -------------------------------------------------------------------------------- /dichotic-listening/mp3/10_Kid_R_Let_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/10_Kid_R_Let_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/11_Fan_R_Mop_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/11_Fan_R_Mop_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/12_Ten_R_Sad_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/12_Ten_R_Sad_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/13_Bus_R_Pail_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/13_Bus_R_Pail_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/14_Give_R_Tap_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/14_Give_R_Tap_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/15_Lock_R_Wet_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/15_Lock_R_Wet_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/16_Roll_R_Hug_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/16_Roll_R_Hug_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/17_Fall_R_Cat_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/17_Fall_R_Cat_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/18_Win_R_Dog_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/18_Win_R_Dog_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/19_More_R_Bed_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/19_More_R_Bed_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/1_Cat_R_Fall_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/1_Cat_R_Fall_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/20_Neck_R_Puff_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/20_Neck_R_Puff_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/21_Gap_R_Some_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/21_Gap_R_Some_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/22_Jet_R_Bug_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/22_Jet_R_Bug_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/23_Hen_R_Tub_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/23_Hen_R_Tub_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/24_Came_R_Pig_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/24_Came_R_Pig_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/25_Jam_R_Sun_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/25_Jam_R_Sun_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/26_Let_R_Kid_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/26_Let_R_Kid_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/27_Mop_R_Fan_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/27_Mop_R_Fan_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/28_Sad_R_Ten_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/28_Sad_R_Ten_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/29_Pail_R_Bus_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/29_Pail_R_Bus_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/2_Dog_R_Win_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/2_Dog_R_Win_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/30_Tap_R_Give_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/30_Tap_R_Give_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/31_Wet_R_Lock_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/31_Wet_R_Lock_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/32_Hug_R_Roll_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/32_Hug_R_Roll_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/3_Bed_R_More_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/3_Bed_R_More_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/4_Puff_R_Neck_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/4_Puff_R_Neck_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/5_Some_R_Gap_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/5_Some_R_Gap_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/6_Bug_R_Jet_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/6_Bug_R_Jet_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/7_Tub_R_Hen_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/7_Tub_R_Hen_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/8_Pig_R_Came_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/8_Pig_R_Came_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/mp3/9_Sun_R_Jam_L.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/mp3/9_Sun_R_Jam_L.mp3 -------------------------------------------------------------------------------- /dichotic-listening/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/dichotic-listening/readme.md -------------------------------------------------------------------------------- /docs/css/jspsych.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/css/jspsych.css -------------------------------------------------------------------------------- /docs/img/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/img/blue.png -------------------------------------------------------------------------------- /docs/img/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/img/orange.png -------------------------------------------------------------------------------- /docs/jspsych.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/jspsych.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-animation.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-audio-button-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-audio-button-response.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-audio-keyboard-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-audio-keyboard-response.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-audio-slider-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-audio-slider-response.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-call-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-call-function.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-categorize-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-categorize-animation.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-categorize-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-categorize-html.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-categorize-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-categorize-image.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-cloze.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-cloze.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-external-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-external-html.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-free-sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-free-sort.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-fullscreen.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-html-button-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-html-button-response.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-html-keyboard-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-html-keyboard-response.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-html-slider-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-html-slider-response.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-iat-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-iat-html.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-iat-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-iat-image.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-image-button-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-image-button-response.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-image-keyboard-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-image-keyboard-response.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-image-slider-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-image-slider-response.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-instructions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-instructions.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-rdk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-rdk.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-reconstruction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-reconstruction.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-resize.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-same-different-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-same-different-html.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-same-different-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-same-different-image.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-serial-reaction-time-mouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-serial-reaction-time-mouse.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-serial-reaction-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-serial-reaction-time.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-survey-html-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-survey-html-form.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-survey-likert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-survey-likert.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-survey-multi-choice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-survey-multi-choice.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-survey-multi-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-survey-multi-select.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-survey-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-survey-text.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-video-button-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-video-button-response.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-video-keyboard-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-video-keyboard-response.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-video-slider-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-video-slider-response.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-visual-search-circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-visual-search-circle.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-vsl-animate-occlusion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-vsl-animate-occlusion.js -------------------------------------------------------------------------------- /docs/plugins/jspsych-vsl-grid-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/jspsych-vsl-grid-scene.js -------------------------------------------------------------------------------- /docs/plugins/template/jspsych-plugin-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/plugins/template/jspsych-plugin-template.js -------------------------------------------------------------------------------- /docs/rt-task_main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/docs/rt-task_main.js -------------------------------------------------------------------------------- /flanker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/README.md -------------------------------------------------------------------------------- /flanker/demo-flanker-qualtrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/demo-flanker-qualtrics.js -------------------------------------------------------------------------------- /flanker/demo-flanker-transformed-with-display-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/demo-flanker-transformed-with-display-element.html -------------------------------------------------------------------------------- /flanker/demo-flanker-transformed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/demo-flanker-transformed.html -------------------------------------------------------------------------------- /flanker/demo-flanker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/demo-flanker.html -------------------------------------------------------------------------------- /flanker/flanker_main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/flanker_main.js -------------------------------------------------------------------------------- /flanker/img/con1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/img/con1.png -------------------------------------------------------------------------------- /flanker/img/con2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/img/con2.png -------------------------------------------------------------------------------- /flanker/img/inc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/img/inc1.png -------------------------------------------------------------------------------- /flanker/img/inc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/img/inc2.png -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/css/jspsych.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/css/jspsych.css -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/jspsych.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/jspsych.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-animation.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-audio-button-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-audio-button-response.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-audio-keyboard-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-audio-keyboard-response.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-audio-slider-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-audio-slider-response.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-call-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-call-function.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-categorize-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-categorize-animation.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-categorize-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-categorize-html.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-categorize-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-categorize-image.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-cloze.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-cloze.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-external-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-external-html.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-free-sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-free-sort.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-fullscreen.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-html-button-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-html-button-response.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-html-keyboard-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-html-keyboard-response.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-html-slider-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-html-slider-response.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-iat-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-iat-html.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-iat-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-iat-image.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-image-button-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-image-button-response.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-image-keyboard-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-image-keyboard-response.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-image-slider-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-image-slider-response.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-instructions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-instructions.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-rdk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-rdk.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-reconstruction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-reconstruction.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-resize.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-same-different-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-same-different-html.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-same-different-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-same-different-image.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-serial-reaction-time-mouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-serial-reaction-time-mouse.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-serial-reaction-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-serial-reaction-time.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-survey-html-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-survey-html-form.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-survey-likert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-survey-likert.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-survey-multi-choice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-survey-multi-choice.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-survey-multi-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-survey-multi-select.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-survey-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-survey-text.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-video-button-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-video-button-response.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-video-keyboard-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-video-keyboard-response.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-video-slider-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-video-slider-response.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-visual-search-circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-visual-search-circle.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-vsl-animate-occlusion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-vsl-animate-occlusion.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/jspsych-vsl-grid-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/jspsych-vsl-grid-scene.js -------------------------------------------------------------------------------- /flanker/jspsych-6.1.0/plugins/template/jspsych-plugin-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/flanker/jspsych-6.1.0/plugins/template/jspsych-plugin-template.js -------------------------------------------------------------------------------- /hello-world/experiment-with-display-element-save-dropbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/experiment-with-display-element-save-dropbox.html -------------------------------------------------------------------------------- /hello-world/experiment-with-display-element-save-php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/experiment-with-display-element-save-php.html -------------------------------------------------------------------------------- /hello-world/experiment-with-display-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/experiment-with-display-element.html -------------------------------------------------------------------------------- /hello-world/experiment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/experiment.html -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/css/jspsych.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/css/jspsych.css -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/jspsych.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/jspsych.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-animation.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-audio-button-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-audio-button-response.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-audio-keyboard-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-audio-keyboard-response.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-audio-slider-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-audio-slider-response.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-call-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-call-function.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-categorize-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-categorize-animation.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-categorize-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-categorize-html.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-categorize-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-categorize-image.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-cloze.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-cloze.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-external-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-external-html.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-free-sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-free-sort.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-fullscreen.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-html-button-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-html-button-response.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-html-keyboard-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-html-keyboard-response.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-html-slider-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-html-slider-response.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-iat-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-iat-html.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-iat-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-iat-image.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-image-button-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-image-button-response.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-image-keyboard-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-image-keyboard-response.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-image-slider-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-image-slider-response.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-instructions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-instructions.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-rdk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-rdk.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-reconstruction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-reconstruction.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-resize.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-same-different-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-same-different-html.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-same-different-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-same-different-image.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-serial-reaction-time-mouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-serial-reaction-time-mouse.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-serial-reaction-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-serial-reaction-time.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-survey-html-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-survey-html-form.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-survey-likert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-survey-likert.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-survey-multi-choice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-survey-multi-choice.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-survey-multi-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-survey-multi-select.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-survey-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-survey-text.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-video-button-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-video-button-response.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-video-keyboard-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-video-keyboard-response.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-video-slider-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-video-slider-response.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-visual-search-circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-visual-search-circle.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-vsl-animate-occlusion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-vsl-animate-occlusion.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/jspsych-vsl-grid-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/jspsych-vsl-grid-scene.js -------------------------------------------------------------------------------- /hello-world/jspsych-6.1.0/plugins/template/jspsych-plugin-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/jspsych-6.1.0/plugins/template/jspsych-plugin-template.js -------------------------------------------------------------------------------- /hello-world/qualtrics-save-dropbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/qualtrics-save-dropbox.js -------------------------------------------------------------------------------- /hello-world/qualtrics-save-php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/qualtrics-save-php.js -------------------------------------------------------------------------------- /hello-world/qualtrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/qualtrics.js -------------------------------------------------------------------------------- /hello-world/save_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/hello-world/save_data.php -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /mkdocs/audio-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/audio-test.md -------------------------------------------------------------------------------- /mkdocs/choose-and-solve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/choose-and-solve.md -------------------------------------------------------------------------------- /mkdocs/dichotic-listening.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/dichotic-listening.md -------------------------------------------------------------------------------- /mkdocs/flanker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/flanker.md -------------------------------------------------------------------------------- /mkdocs/github-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/github-pages.md -------------------------------------------------------------------------------- /mkdocs/hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/hello-world.md -------------------------------------------------------------------------------- /mkdocs/img/flanker-qualtrics-Step5_move_block.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/img/flanker-qualtrics-Step5_move_block.jpg -------------------------------------------------------------------------------- /mkdocs/img/flanker-qualtrics-Step6_show_data.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/img/flanker-qualtrics-Step6_show_data.jpg -------------------------------------------------------------------------------- /mkdocs/img/github-pages-Step1_Fork_the_jsPsych_repo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/img/github-pages-Step1_Fork_the_jsPsych_repo.jpg -------------------------------------------------------------------------------- /mkdocs/img/github-pages-Step2_Click_the_Settings_button.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/img/github-pages-Step2_Click_the_Settings_button.jpg -------------------------------------------------------------------------------- /mkdocs/img/github-pages-Step3_Enable_GitHub_Pages.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/img/github-pages-Step3_Enable_GitHub_Pages.jpg -------------------------------------------------------------------------------- /mkdocs/img/hello-world-qualtrics-Step1_add_javascript_to_question.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/img/hello-world-qualtrics-Step1_add_javascript_to_question.jpg -------------------------------------------------------------------------------- /mkdocs/img/hello-world-qualtrics-Step2_open_javascript_editor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/img/hello-world-qualtrics-Step2_open_javascript_editor.jpg -------------------------------------------------------------------------------- /mkdocs/img/hello-world-qualtrics-Step3_after_copy_paste.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/img/hello-world-qualtrics-Step3_after_copy_paste.jpg -------------------------------------------------------------------------------- /mkdocs/img/hello-world-qualtrics-Step3_open_question_html_editor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/img/hello-world-qualtrics-Step3_open_question_html_editor.jpg -------------------------------------------------------------------------------- /mkdocs/img/rt-task-hosting_Enable_GitHub_Pages.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/img/rt-task-hosting_Enable_GitHub_Pages.jpg -------------------------------------------------------------------------------- /mkdocs/img/rt-task-qualtrics-Step5_move_block.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/img/rt-task-qualtrics-Step5_move_block.jpg -------------------------------------------------------------------------------- /mkdocs/img/rt-task-qualtrics-Step6_show_data.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/img/rt-task-qualtrics-Step6_show_data.jpg -------------------------------------------------------------------------------- /mkdocs/img/rt-task-start_RT_task_folder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/img/rt-task-start_RT_task_folder.jpg -------------------------------------------------------------------------------- /mkdocs/img/save-dropbox-Step1_app_console.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/img/save-dropbox-Step1_app_console.jpg -------------------------------------------------------------------------------- /mkdocs/img/save-dropbox-Step2_give_permissions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/img/save-dropbox-Step2_give_permissions.jpg -------------------------------------------------------------------------------- /mkdocs/img/save-dropbox-Step3_access_token.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/img/save-dropbox-Step3_access_token.jpg -------------------------------------------------------------------------------- /mkdocs/img/save-dropbox-Step6_unlink_app.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/img/save-dropbox-Step6_unlink_app.jpg -------------------------------------------------------------------------------- /mkdocs/img/save-php-Step6_participant_id.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/img/save-php-Step6_participant_id.jpg -------------------------------------------------------------------------------- /mkdocs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/index.md -------------------------------------------------------------------------------- /mkdocs/mood-induction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/mood-induction.md -------------------------------------------------------------------------------- /mkdocs/n-back.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/n-back.md -------------------------------------------------------------------------------- /mkdocs/participants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/participants.md -------------------------------------------------------------------------------- /mkdocs/rc-rage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/rc-rage.md -------------------------------------------------------------------------------- /mkdocs/rt-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/rt-task.md -------------------------------------------------------------------------------- /mkdocs/save-dropbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/save-dropbox.md -------------------------------------------------------------------------------- /mkdocs/save-php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/save-php.md -------------------------------------------------------------------------------- /mkdocs/stop-it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/mkdocs/stop-it.md -------------------------------------------------------------------------------- /n-back/full-experiment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/full-experiment.html -------------------------------------------------------------------------------- /n-back/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/index.html -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/css/jspsych.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/css/jspsych.css -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/jspsych.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/jspsych.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-animation.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-audio-button-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-audio-button-response.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-audio-keyboard-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-audio-keyboard-response.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-audio-slider-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-audio-slider-response.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-call-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-call-function.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-categorize-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-categorize-animation.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-categorize-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-categorize-html.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-categorize-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-categorize-image.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-cloze.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-cloze.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-external-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-external-html.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-free-sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-free-sort.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-fullscreen.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-html-button-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-html-button-response.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-html-keyboard-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-html-keyboard-response.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-html-slider-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-html-slider-response.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-iat-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-iat-html.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-iat-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-iat-image.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-image-button-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-image-button-response.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-image-keyboard-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-image-keyboard-response.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-image-slider-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-image-slider-response.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-instructions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-instructions.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-rdk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-rdk.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-reconstruction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-reconstruction.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-resize.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-same-different-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-same-different-html.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-same-different-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-same-different-image.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-serial-reaction-time-mouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-serial-reaction-time-mouse.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-serial-reaction-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-serial-reaction-time.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-survey-html-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-survey-html-form.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-survey-likert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-survey-likert.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-survey-multi-choice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-survey-multi-choice.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-survey-multi-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-survey-multi-select.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-survey-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-survey-text.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-video-button-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-video-button-response.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-video-keyboard-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-video-keyboard-response.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-video-slider-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-video-slider-response.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-visual-search-circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-visual-search-circle.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-vsl-animate-occlusion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-vsl-animate-occlusion.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/jspsych-vsl-grid-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/jspsych-vsl-grid-scene.js -------------------------------------------------------------------------------- /n-back/jspsych-6.1.0/plugins/template/jspsych-plugin-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/jspsych-6.1.0/plugins/template/jspsych-plugin-template.js -------------------------------------------------------------------------------- /n-back/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/n-back/readme.md -------------------------------------------------------------------------------- /rt-task/demo-simple-rt-task-qualtrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/demo-simple-rt-task-qualtrics.js -------------------------------------------------------------------------------- /rt-task/demo-simple-rt-task-transformed-with-display-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/demo-simple-rt-task-transformed-with-display-element.html -------------------------------------------------------------------------------- /rt-task/demo-simple-rt-task-transformed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/demo-simple-rt-task-transformed.html -------------------------------------------------------------------------------- /rt-task/demo-simple-rt-task.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/demo-simple-rt-task.html -------------------------------------------------------------------------------- /rt-task/img/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/img/blue.png -------------------------------------------------------------------------------- /rt-task/img/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/img/orange.png -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/css/jspsych.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/css/jspsych.css -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/jspsych.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/jspsych.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-animation.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-audio-button-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-audio-button-response.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-audio-keyboard-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-audio-keyboard-response.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-audio-slider-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-audio-slider-response.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-call-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-call-function.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-categorize-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-categorize-animation.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-categorize-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-categorize-html.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-categorize-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-categorize-image.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-cloze.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-cloze.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-external-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-external-html.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-free-sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-free-sort.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-fullscreen.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-html-button-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-html-button-response.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-html-keyboard-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-html-keyboard-response.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-html-slider-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-html-slider-response.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-iat-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-iat-html.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-iat-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-iat-image.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-image-button-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-image-button-response.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-image-keyboard-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-image-keyboard-response.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-image-slider-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-image-slider-response.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-instructions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-instructions.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-rdk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-rdk.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-reconstruction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-reconstruction.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-resize.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-same-different-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-same-different-html.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-same-different-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-same-different-image.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-serial-reaction-time-mouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-serial-reaction-time-mouse.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-serial-reaction-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-serial-reaction-time.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-survey-html-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-survey-html-form.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-survey-likert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-survey-likert.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-survey-multi-choice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-survey-multi-choice.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-survey-multi-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-survey-multi-select.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-survey-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-survey-text.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-video-button-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-video-button-response.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-video-keyboard-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-video-keyboard-response.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-video-slider-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-video-slider-response.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-visual-search-circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-visual-search-circle.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-vsl-animate-occlusion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-vsl-animate-occlusion.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/jspsych-vsl-grid-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/jspsych-vsl-grid-scene.js -------------------------------------------------------------------------------- /rt-task/jspsych-6.1.0/plugins/template/jspsych-plugin-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/jspsych-6.1.0/plugins/template/jspsych-plugin-template.js -------------------------------------------------------------------------------- /rt-task/rt-task_main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kywch/jsPsych-in-Qualtrics/HEAD/rt-task/rt-task_main.js --------------------------------------------------------------------------------