annotate index.html @ 823:a0d7a64d8325

Urgent Fix. Drag End function uses clientX mouse. Fixes rogue movement after drop on OSX.
author Nicholas Jillings <nicholas.jillings@eecs.qmul.ac.uk>
date Mon, 23 Nov 2015 15:48:07 +0000
parents 9c579fc05a09
children 7b522c145516 b7fd0296c6ab
rev   line source
n@816 1 <!DOCTYPE html>
n@816 2 <html lang="en">
n@816 3 <head>
n@816 4 <meta charset="utf-8" />
n@816 5
n@816 6
n@816 7 <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
n@816 8 Remove this if you use the .htaccess -->
n@816 9 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
n@816 10
n@816 11 <title>Web Audio Evaluation Tool</title>
n@816 12 <meta name="description" content="" />
n@816 13 <meta name="author" content="" />
n@816 14
n@816 15 <!-- Load up the default core JS and CSS files-->
n@816 16 <link rel='stylesheet' type='text/css' href='core.css'>
n@816 17 <!-- Use jQuery hosted from Google CDN -->
n@816 18 <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>-->
n@816 19 <script src="jquery-2.1.4.js"></script>
n@816 20 <script src='core.js'></script>
n@816 21 <script type="text/javascript">
n@816 22 window.onbeforeunload = function() {
n@816 23 return "Please only leave this page once you have completed the tests. Are you sure you have completed all testing?";
n@816 24 };
n@816 25 </script>
n@816 26 <!-- Uncomment the following script for automatic loading of projects -->
n@816 27 <script>
n@816 28 //url = '/pseudo.xml'; //Project XML document location
n@816 29 url = 'example_eval/project.xml';
n@816 30 loadProjectSpec(url);
n@816 31 </script>
n@816 32
n@816 33 </head>
n@816 34
n@816 35 <body>
n@816 36 <!-- Load up the default page interface allowing for project setting loads, even if hard-coded-->
n@816 37 <!-- Actual test interface design should be contained in the .js for ease of dynamic content-->
n@816 38 <div id='topLevelBody'>
n@816 39 <p>HTML5 APE Tool</p>
n@816 40 </div>
n@816 41 </body>
n@816 42 </html>