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