annotate index.html @ 225:dfd24b98c2b2
SMC paper: added boxplot graph, input XML, decreased itemize spacing (also changed index.html page title)
author |
Brecht De Man <b.deman@qmul.ac.uk> |
date |
Thu, 18 Jun 2015 17:34:27 +0100 |
parents |
32e16bf9303a |
children |
eff3dfc433ae |
rev |
line source |
b@75
|
1 <!DOCTYPE html>
|
b@75
|
2 <html lang="en">
|
b@75
|
3 <head>
|
b@75
|
4 <meta charset="utf-8" />
|
b@75
|
5
|
b@75
|
6
|
b@75
|
7 <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
|
b@75
|
8 Remove this if you use the .htaccess -->
|
b@75
|
9 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
b@75
|
10
|
b@225
|
11 <title>Web Audio Evaluation Tool</title>
|
b@75
|
12 <meta name="description" content="" />
|
b@75
|
13 <meta name="author" content="" />
|
b@75
|
14
|
b@75
|
15 <!-- Load up the default core JS and CSS files-->
|
n@152
|
16 <link rel='stylesheet' type='text/css' href='core.css'>
|
b@75
|
17 <!-- Use jQuery hosted from Google CDN -->
|
nicholas@103
|
18 <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>-->
|
nicholas@103
|
19 <script src="jquery-2.1.4.js"></script>
|
b@75
|
20 <script src='core.js'></script>
|
b@75
|
21 <script type="text/javascript">
|
b@75
|
22 window.onbeforeunload = function() {
|
b@75
|
23 return "Please only leave this page once you have completed the tests. Are you sure you have completed all testing?";
|
b@75
|
24 };
|
b@75
|
25 </script>
|
b@75
|
26 <!-- Uncomment the following script for automatic loading of projects -->
|
b@75
|
27 <script>
|
b@207
|
28 url = 'example_eval/project.xml'; //Project XML document location
|
b@75
|
29 loadProjectSpec(url);
|
b@75
|
30 </script>
|
b@75
|
31
|
b@75
|
32 </head>
|
b@75
|
33
|
b@75
|
34 <body>
|
b@75
|
35 <!-- Load up the default page interface allowing for project setting loads, even if hard-coded-->
|
b@75
|
36 <!-- Actual test interface design should be contained in the .js for ease of dynamic content-->
|
b@75
|
37 <div id='topLevelBody'>
|
b@75
|
38 <p>HTML5 APE Tool</p>
|
b@75
|
39 </div>
|
b@75
|
40 </body>
|
b@75
|
41 </html>
|