-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (45 loc) · 2.1 KB
/
index.html
File metadata and controls
57 lines (45 loc) · 2.1 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<!--
The exp.html is the main form that
controls the experiment.
see comments throughout for advice
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Mouselab-MDP Demo</title>
<meta charset="utf-8">
<link rel="Favicon" href="static/favicon.ico" />
<!-- JsPsych -->
<script src="static/js/jsPsych/jspsych.js" type="text/javascript"></script>
<script src="static/js/jsPsych/plugins/jspsych-text.js" type="text/javascript"></script>
<link rel="stylesheet" href="static/js/jsPsych/css/jspsych.css" type="text/css"></link>
<!-- Mouselab MDP and dependencies-->
<script src="static/lib/jquery-min.js" type="text/javascript"> </script>
<script src="static/lib/underscore-min.js" type="text/javascript"> </script>
<script src="static/lib/fabric.min.js"></script>
<script src="static/js/jspsych-mouselab-mdp.js" type="text/javascript"></script>
<link rel=stylesheet href="static/css/bootstrap.min.css" type="text/css"> <!-- not necessary, but stylish -->
<link rel=stylesheet href="static/css/style.css" type="text/css">
</head>
<body>
<!-- Error messages -->
<noscript>
<h1>Warning: Javascript seems to be disabled</h1>
<p>This website requires that Javascript be enabled on your browser.</p>
<p>Instructions for enabling Javascript in your browser can be found
<a href="http://support.google.com/bin/answer.py?hl=en&answer=23852">here</a><p>
</noscript>
<div id='window_error' style='display: none;'>
<h1>Window too small</h1>
Your browser window is too small for this experiment to run
properly.
Please make your window larger or zoom out.
</div>
<!-- Main div -->
<div id='jspsych-target' class='jspsych-display-element'>
<h1>Loading</h1>
</div>
</body>
<!-- The main experiment file. -->
<script language="javascript", src="static/js/experiment.js", type="text/javascript"></script>
</html>