annotate index.html @ 2017:4a14c8a65af2

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