annotate index.html @ 855:1dc56cb86152

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