annotate index.html @ 1604:d5d7dfdbf335

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