annotate apeTool.html @ 69:c6bff12144a0 Dev_main

Fixed bug where not defining postTest in audioHolder would crash progression.
author Nicholas Jillings <nicholas.jillings@eecs.qmul.ac.uk>
date Wed, 22 Apr 2015 18:34:56 +0100
parents c943465de196
children 4924b57165c2
rev   line source
nicholas@1 1 <!DOCTYPE html>
nicholas@1 2 <html lang="en">
nicholas@1 3 <head>
nicholas@1 4 <meta charset="utf-8" />
nicholas@1 5
n@32 6 <!-- WARNING!!!
n@32 7 *
n@32 8 * YOU ARE VIEWING THE DEV VERSION. THERE IS NO GUARANTEE THIS WILL BE FULLY FUNCTIONAL
n@32 9 *
n@32 10 * WARNING!!!
n@32 11 *
n@32 12 -->
n@32 13
n@32 14
nicholas@1 15 <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
nicholas@1 16 Remove this if you use the .htaccess -->
nicholas@1 17 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
nicholas@1 18
nicholas@1 19 <title>apeTool</title>
nicholas@1 20 <meta name="description" content="" />
nicholas@1 21 <meta name="author" content="" />
nicholas@1 22
nicholas@1 23 <!-- Load up the default core JS and CSS files-->
nicholas@1 24 <link rel='stylesheet' type='text/css' href='graphics.css'>
nicholas@1 25 <link rel='stylesheet' type='text/css' href='structure.css'>
nicholas@1 26 <!-- Use jQuery hosted from Google CDN -->
nicholas@1 27 <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
nicholas@1 28 <script src='core.js'></script>
n@56 29 <script type="text/javascript">
n@56 30 window.onbeforeunload = function() {
n@56 31 return "Please only leave this page once you have completed the tests. Are you sure you have completed all testing?";
n@56 32 };
n@56 33 </script>
nicholas@6 34 <!-- Uncomment the following script for automatic loading of projects -->
nicholas@6 35 <script>
nicholas@64 36 url = 'example_eval/project.xml'; //Project XML document location
nicholas@6 37 loadProjectSpec(url);
nicholas@6 38 </script>
nicholas@1 39
nicholas@1 40 </head>
nicholas@1 41
nicholas@1 42 <body>
nicholas@1 43 <!-- Load up the default page interface allowing for project setting loads, even if hard-coded-->
nicholas@1 44 <!-- Actual test interface design should be contained in the .js for ease of dynamic content-->
nicholas@1 45 <div id='topLevelBody'>
nicholas@1 46 <p>HTML5 APE Tool</p>
nicholas@1 47 </div>
nicholas@1 48 </body>
nicholas@1 49 </html>