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