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