annotate index.html @ 766:7c937cc3bc53

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