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