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