annotate index.html @ 950:05e7edb032b9

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