annotate index.html @ 763:519baf8648a9

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