annotate test.html @ 2642:77204f78386a

#3: Added resampler from JS-xtract into resampler.js. Automatically use to match sample rates
author Nicholas Jillings <nicholas.jillings@mail.bcu.ac.uk>
date Thu, 19 Jan 2017 14:48:02 +0000
parents 464c6c6692d6
children 52e51b15f808
rev   line source
nicholas@2267 1 <!DOCTYPE html>
nicholas@2267 2 <html lang="en">
nicholas@2267 3
nicholas@2538 4 <head>
nicholas@2538 5 <meta http-equiv="content-type" content="text/html; charset=utf-8">
nicholas@2267 6
nicholas@2538 7
nicholas@2538 8 <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
nicholas@2267 9 Remove this if you use the .htaccess -->
nicholas@2538 10 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
nicholas@2267 11
nicholas@2538 12 <title>Web Audio Evaluation Tool</title>
nicholas@2538 13 <meta name="description" content="" />
nicholas@2538 14 <meta name="author" content="" />
nicholas@2267 15
nicholas@2538 16 <!-- Load up the default core JS and CSS files-->
nicholas@2538 17 <link rel='stylesheet' type='text/css' href='css/core.css'>
nicholas@2538 18 <!-- Use jQuery hosted from Google CDN -->
nicholas@2538 19 <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>-->
nicholas@2538 20 <script type="text/javascript" src="js/jquery-2.1.4.js"></script>
nicholas@2642 21 <script type="text/javascript" src="js/resample.js"></script>
nicholas@2538 22 <script type="text/javascript" src="js/loader.js"></script>
nicholas@2538 23 </head>
nicholas@2538 24
nicholas@2538 25 <body>
nicholas@2538 26 <!-- Load up the default page interface allowing for project setting loads, even if hard-coded-->
nicholas@2538 27 <!-- Actual test interface design should be contained in the .js for ease of dynamic content-->
nicholas@2538 28 <div id='topLevelBody'>
nicholas@2538 29 <span>Web Audio Evaluation Toolbox</span>
nicholas@2538 30 </div>
nicholas@2538 31 <div id="popupHolder" class="popupHolder" style="visibility: hidden">
nicholas@2538 32 <div id="popupContent">
nicholas@2538 33 <div id="popupTitleHolder">
nicholas@2538 34 <span id="popupTitle"></span>
nicholas@2267 35 </div>
nicholas@2538 36 <div id="popupResponse"></div>
nicholas@2267 37 </div>
nicholas@2538 38 <button id="popup-proceed" class="popupButton">Next</button>
nicholas@2538 39 <button id="popup-previous" class="popupButton">Back</button>
nicholas@2538 40 </div>
nicholas@2538 41 <div class="testHalt" style="visibility: hidden"></div>
nicholas@2538 42 </body>
nicholas@2538 43
nicholas@2267 44 </html>