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