annotate index.html @ 814:22ad83e232f7

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