annotate index.html @ 1606:45d3860b350a

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