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