annotate index.html @ 776:0795031754d7

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