annotate index.html @ 1112:28aa066720ed

Fixed typo
author Giulio Moro <giuliomoro@yahoo.it>
date Sun, 21 Feb 2016 03:35:27 +0000
parents 282dfb8076f5
children a4ad9e55b5b8
rev   line source
n@1106 1 <!DOCTYPE html>
n@1106 2 <html lang="en">
n@1106 3 <head>
n@1106 4 <meta charset="utf-8" />
n@1106 5
n@1106 6
n@1106 7 <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
n@1106 8 Remove this if you use the .htaccess -->
n@1106 9 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
n@1106 10
n@1106 11 <title>Web Audio Evaluation Tool</title>
n@1106 12 <meta name="description" content="" />
n@1106 13 <meta name="author" content="" />
n@1106 14
n@1106 15 <!-- Load up the default core JS and CSS files-->
n@1106 16 <link rel='stylesheet' type='text/css' href='core.css'>
n@1106 17 <!-- Use jQuery hosted from Google CDN -->
n@1106 18 <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>-->
n@1106 19 <script src="jquery-2.1.4.js"></script>
n@1106 20 <script src='core.js'></script>
n@1106 21 <script src='loudness.js'></script>
n@1106 22 <script src='xmllint.js'></script>
n@1106 23 <script src='WAVE.js'></script>
n@1106 24 <script type="text/javascript">
n@1106 25 // SEARCH QUERY: By using the GET Request option ?url=loca/path/to/project.xml in the URL bar, you can load a project quickly
n@1106 26 if (window.location.search.length != 0)
n@1106 27 {
n@1106 28 var search = window.location.search.split('?')[1];
n@1106 29 // Now split the requests into pairs
n@1106 30 var searchQueries = search.split('&');
n@1106 31 for (var i in searchQueries)
n@1106 32 {
n@1106 33 // Split each request into
n@1106 34 searchQueries[i] = searchQueries[i].split('=');
n@1106 35 if (searchQueries[i][0] == "url")
n@1106 36 {
n@1106 37 url = searchQueries[i][1];
n@1106 38 }
n@1106 39 }
n@1106 40 loadProjectSpec(url);
n@1106 41 window.onbeforeunload = function() {
n@1106 42 return "Please only leave this page once you have completed the tests. Are you sure you have completed all testing?";
n@1106 43 };
n@1106 44 }
n@1106 45 </script>
n@1106 46 </head>
n@1106 47
n@1106 48 <body>
n@1106 49 <!-- Load up the default page interface allowing for project setting loads, even if hard-coded-->
n@1106 50 <!-- Actual test interface design should be contained in the .js for ease of dynamic content-->
n@1106 51 <div id='topLevelBody'>
n@1106 52 <span>Web Audio Evaluation Toolbox</span>
n@1106 53 </div>
n@1106 54 <div id="popupHolder" class="popupHolder" style="visibility: hidden; z-index: -1">
n@1106 55 <div id="popupContent">
n@1106 56 <div id="popupTitleHolder" style="text-align: center">
n@1106 57 <span id="popupTitle"></span>
n@1106 58 </div>
n@1106 59 <div id="popupResponse"></div>
n@1106 60 </div>
n@1106 61 <button id="popup-proceed" class="popupButton">Next</button>
n@1106 62 <button id="popup-previous" class="popupButton">Back</button>
n@1106 63 </div>
n@1106 64 <div class="testHalt" style="visibility: hidden; z-index: -2"></div>
n@1106 65 </body>
n@1106 66 </html>