comparison index.html @ 1571:2a3e95841f14

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