annotate index.html @ 932:ec9a867e4512

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