annotate index.html @ 1540:1f233975e76c

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