annotate index.html @ 902:4041e5abcde5

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