annotate Perceptual Evaluation/webaudioevaluationtool/index.html @ 0:55c282f01a30 tip

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