annotate index.html @ 1544:8e7ce0b36a4d

SMC Paper: Tidying up of margins, added output example (just one audioElement). Updated the options list (compacted some to make room). Removed redundant paragraph. Now under 6 pages.
author Nicholas Jillings <nickjillings@users.noreply.github.com>
date Fri, 19 Jun 2015 10:40:37 +0100
parents 45363ee3632d
children 594e617b75ad
rev   line source
b@1543 1 <!DOCTYPE html>
b@1543 2 <html lang="en">
b@1543 3 <head>
b@1543 4 <meta charset="utf-8" />
b@1543 5
b@1543 6
b@1543 7 <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
b@1543 8 Remove this if you use the .htaccess -->
b@1543 9 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
b@1543 10
b@1543 11 <title>Web Audio Evaluation Tool</title>
b@1543 12 <meta name="description" content="" />
b@1543 13 <meta name="author" content="" />
b@1543 14
b@1543 15 <!-- Load up the default core JS and CSS files-->
b@1543 16 <link rel='stylesheet' type='text/css' href='core.css'>
b@1543 17 <!-- Use jQuery hosted from Google CDN -->
b@1543 18 <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>-->
b@1543 19 <script src="jquery-2.1.4.js"></script>
b@1543 20 <script src='core.js'></script>
b@1543 21 <script type="text/javascript">
b@1543 22 window.onbeforeunload = function() {
b@1543 23 return "Please only leave this page once you have completed the tests. Are you sure you have completed all testing?";
b@1543 24 };
b@1543 25 </script>
b@1543 26 <!-- Uncomment the following script for automatic loading of projects -->
b@1543 27 <script>
b@1543 28 url = 'example_eval/project.xml'; //Project XML document location
b@1543 29 loadProjectSpec(url);
b@1543 30 </script>
b@1543 31
b@1543 32 </head>
b@1543 33
b@1543 34 <body>
b@1543 35 <!-- Load up the default page interface allowing for project setting loads, even if hard-coded-->
b@1543 36 <!-- Actual test interface design should be contained in the .js for ease of dynamic content-->
b@1543 37 <div id='topLevelBody'>
b@1543 38 <p>HTML5 APE Tool</p>
b@1543 39 </div>
b@1543 40 </body>
b@1543 41 </html>