-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path01_expSetup.html
25 lines (25 loc) · 1.18 KB
/
01_expSetup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<html>
<head>
<title>Masked Categorisation Task</title>
<meta charset="utf-8"/>
<!-- pull in JATOS resources -->
<script src="jatos.js"></script>
<!-- pull in jsPsych resources -->
<script src="jspsych-6.3.1/jspsych.js"></script>
<script src="jspsych-6.3.1/plugins/jspsych-instructions.js"></script>
<script src="jspsych-6.3.1/plugins/jspsych-survey-text.js"></script>
<script src="jspsych-6.3.1/plugins/jspsych-survey-multi-choice.js"></script>
<script src="jspsych-6.3.1/plugins/jspsych-html-keyboard-response.js"></script>
<script src="jspsych-6.3.1/plugins/jspsych-resize.js"></script>
<!-- pull in the preexperiment functions -->
<script src="lib/consent.js"></script>
<script src="lib/demographics.js"></script>
<script src="lib/helperFunctions.js"></script>
<!-- some additional styling to make the background black -->
<link href="lib/exp.css" rel="stylesheet" type="text/css"></link>
<style></style>
</head>
<body></body>
<!-- pull in the actual component script -->
<script src="01_expSetup.js"></script>
</html>