Mercurial > hg > webaudioevaluationtool
comparison index.html @ 517:7e85ebcab737
Merge - pre-release of 1.2.0
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Wed, 17 Feb 2016 11:16:08 +0000 |
parents | d7b1b270c13a |
children | 328f24798462 ce3d4d6d01b8 |
comparison
equal
deleted
inserted
replaced
450:60b535a6b2a2 | 517:7e85ebcab737 |
---|---|
17 <!-- Use jQuery hosted from Google CDN --> | 17 <!-- Use jQuery hosted from Google CDN --> |
18 <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>--> | 18 <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>--> |
19 <script src="jquery-2.1.4.js"></script> | 19 <script src="jquery-2.1.4.js"></script> |
20 <script src='core.js'></script> | 20 <script src='core.js'></script> |
21 <script src='loudness.js'></script> | 21 <script src='loudness.js'></script> |
22 <script src='xmllint.js'></script> | |
23 <script src='WAVE.js'></script> | |
22 <script type="text/javascript"> | 24 <script type="text/javascript"> |
23 // SEARCH QUERY: By using the GET Request option ?url=loca/path/to/project.xml in the URL bar, you can load a project quickly | 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 |
24 if (window.location.search.length != 0) | 26 if (window.location.search.length != 0) |
25 { | 27 { |
26 var search = window.location.search.split('?')[1]; | 28 var search = window.location.search.split('?')[1]; |
45 | 47 |
46 <body> | 48 <body> |
47 <!-- Load up the default page interface allowing for project setting loads, even if hard-coded--> | 49 <!-- Load up the default page interface allowing for project setting loads, even if hard-coded--> |
48 <!-- Actual test interface design should be contained in the .js for ease of dynamic content--> | 50 <!-- Actual test interface design should be contained in the .js for ease of dynamic content--> |
49 <div id='topLevelBody'> | 51 <div id='topLevelBody'> |
50 <h1>Web Audio Evaluation Tool</h1> | 52 <span>Web Audio Evaluation Toolbox</span> |
51 <h2>Start menu </h2> | |
52 <ul> | |
53 <li><a href="index.html?url=example_eval/project.xml" target="_blank">APE interface test example</a></li> | |
54 <li><a href="index.html?url=example_eval/mushra_example.xml" target="_blank">MUSHRA interface test example</a></li> | |
55 <li><a href="test_create/test_create.html" target="_blank">Test creator</a></li> | |
56 <li><a href="analyse.html" target="_blank">Analysis and diagnostics of results</a></li> | |
57 </ul> | |
58 | |
59 <br> | |
60 | |
61 <ul> | |
62 <li><a href="LICENSE.txt" target="_blank">License</a></li> | |
63 <li><a href="CITING.txt" target="_blank">Citing</a></li> | |
64 <li><a href="docs/Instructions/Instructions.pdf" target="_blank">Instructions</a></li> | |
65 </ul> | |
66 | |
67 | |
68 </div> | 53 </div> |
54 <div id="popupHolder" class="popupHolder" style="visibility: hidden; z-index: -1"> | |
55 <div id="popupContent"> | |
56 <div id="popupTitleHolder" style="text-align: center"> | |
57 <span id="popupTitle"></span> | |
58 </div> | |
59 <div id="popupResponse"></div> | |
60 </div> | |
61 <button id="popup-proceed" class="popupButton">Next</button> | |
62 <button id="popup-previous" class="popupButton">Back</button> | |
63 </div> | |
64 <div class="testHalt" style="visibility: hidden; z-index: -2"></div> | |
69 </body> | 65 </body> |
70 </html> | 66 </html> |