Mercurial > hg > webaudioevaluationtool
annotate index.html @ 1006:9e65514f45c9
Moved global css options into core.css
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Mon, 01 Jun 2015 09:26:59 +0100 |
parents | 55bf2500f278 |
children | 4a0bfa7bef24 |
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 |
BrechtDeMan@938 | 11 <title>apeTool</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@951 | 28 url = 'example_eval/project.xml'; //Project XML document location |
BrechtDeMan@938 | 29 loadProjectSpec(url); |
BrechtDeMan@938 | 30 </script> |
BrechtDeMan@938 | 31 |
BrechtDeMan@938 | 32 </head> |
BrechtDeMan@938 | 33 |
BrechtDeMan@938 | 34 <body> |
BrechtDeMan@938 | 35 <!-- Load up the default page interface allowing for project setting loads, even if hard-coded--> |
BrechtDeMan@938 | 36 <!-- Actual test interface design should be contained in the .js for ease of dynamic content--> |
BrechtDeMan@938 | 37 <div id='topLevelBody'> |
BrechtDeMan@938 | 38 <p>HTML5 APE Tool</p> |
BrechtDeMan@938 | 39 </div> |
BrechtDeMan@938 | 40 </body> |
BrechtDeMan@938 | 41 </html> |