annotate index.html @ 936:5ad6a3102921

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