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