Mercurial > hg > webaudioevaluationtool
annotate index.html @ 941:b9acfb21c905
Added local jQuery 2.1.4 file to enable internet free. Can rely entirely on local python server
author | Nicholas Jillings <nicholas.jillings@eecs.qmul.ac.uk> |
---|---|
date | Sun, 17 May 2015 16:45:09 +0100 |
parents | c3fe29d33643 |
children | dcb042ed9d76 759c2ace3c65 |
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--> |
BrechtDeMan@938 | 16 <link rel='stylesheet' type='text/css' href='graphics.css'> |
BrechtDeMan@938 | 17 <link rel='stylesheet' type='text/css' href='structure.css'> |
BrechtDeMan@938 | 18 <!-- Use jQuery hosted from Google CDN --> |
nicholas@941 | 19 <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>--> |
nicholas@941 | 20 <script src="jquery-2.1.4.js"></script> |
BrechtDeMan@938 | 21 <script src='core.js'></script> |
BrechtDeMan@938 | 22 <script type="text/javascript"> |
BrechtDeMan@938 | 23 window.onbeforeunload = function() { |
BrechtDeMan@938 | 24 return "Please only leave this page once you have completed the tests. Are you sure you have completed all testing?"; |
BrechtDeMan@938 | 25 }; |
BrechtDeMan@938 | 26 </script> |
BrechtDeMan@938 | 27 <!-- Uncomment the following script for automatic loading of projects --> |
BrechtDeMan@938 | 28 <script> |
BrechtDeMan@938 | 29 url = 'example_eval/project.xml'; //Project XML document location |
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> |