-
Notifications
You must be signed in to change notification settings - Fork 4
/
dpx.html
33 lines (29 loc) · 1.17 KB
/
dpx.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
26
27
28
29
30
31
32
33
<!DOCTYPE html><html class=''>
<head>
<meta charset='UTF-8'>
<meta name="robots" content="noindex">
<title>The Experiment Factory: Preview</title>
<link rel='stylesheet prefetch' href='static/experiments/dpx/style.css'>
<link rel='stylesheet prefetch' href='static/css/jspsych.css'>
<link rel='stylesheet prefetch' href='static/css/default_style.css'>
</head>
<body>
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src='static/js/jspsych/jspsych.js'></script>
<script src='static/js/jspsych/plugins/jspsych-call-function.js'></script>
<script src='static/js/jspsych/plugins/jspsych-text.js'></script>
<script src='static/js/jspsych/plugins/jspsych-instructions.js'></script>
<script src='static/js/jspsych/plugins/jspsych-single-stim.js'></script>
<script src='static/js/jspsych/plugins/jspsych-categorize.js'></script>
<script src='static/js/jspsych/plugins/jspsych-survey-text.js'></script>
<script src='static/experiments/dpx/experiment.js'></script>
<script>
jsPsych.init({
timeline: dpx_experiment,
on_finish: function () {
jsPsych.data.localSave('dpx_results.csv', 'csv');
}
});
</script>
</body>
</html>