annotate index.html @ 872:ca4ae613f1dd

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