-
Notifications
You must be signed in to change notification settings - Fork 4
/
future_time_perspective.html
39 lines (32 loc) · 1.23 KB
/
future_time_perspective.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
34
35
36
37
38
39
<!DOCTYPE html><html class=''>
<head>
<meta charset='UTF-8'>
<meta name="robots" content="noindex">
<title>The Experiment Factory: Preview</title>
<link rel='stylesheet' type='text/css' href='static/experiments/future_time_perspective/style.css'>
<link rel='stylesheet' type='text/css' href='static/css/jspsych.css'>
<link rel='stylesheet' type='text/css' 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-text.js'></script>
<script src='static/js/jspsych/poldrack_plugins/jspsych-poldrack-instructions.js'></script>
<script src='static/js/jspsych/poldrack_plugins/jspsych-poldrack-survey-multi-choice.js'></script>
<script src='static/experiments/future_time_perspective/experiment.js'></script>
<script>
$( document ).ready(function() {
expfactory_finished = false;
jsPsych.init({
timeline: future_time_perspective_experiment,
display_element: "getDisplayElement",
fullscreen: true,
on_finish: function(data){
jsPsych.data.localSave('future_time_perspective_results.csv', 'csv');
expfactory_finished = true;
}
});
});
</script>
</body>
</html>