annotate index.html @ 755:c73996a0fb21

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