Mercurial > hg > webaudioevaluationtool
annotate apeTool.html @ 1657:faa52cea3e3d
Added customised scale - NEED TO ENTER INTO DOCUMENTATION!
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Fri, 10 Apr 2015 19:09:21 +0100 |
parents | 06e4d36ca9d7 |
children | d7bdfe8bf67e |
rev | line source |
---|---|
nickjillings@1642 | 1 <!DOCTYPE html> |
nickjillings@1642 | 2 <html lang="en"> |
nickjillings@1642 | 3 <head> |
nickjillings@1642 | 4 <meta charset="utf-8" /> |
nickjillings@1642 | 5 |
nickjillings@1642 | 6 <!-- WARNING!!! |
nickjillings@1642 | 7 * |
nickjillings@1642 | 8 * YOU ARE VIEWING THE DEV VERSION. THERE IS NO GUARANTEE THIS WILL BE FULLY FUNCTIONAL |
nickjillings@1642 | 9 * |
nickjillings@1642 | 10 * WARNING!!! |
nickjillings@1642 | 11 * |
nickjillings@1642 | 12 --> |
nickjillings@1642 | 13 |
nickjillings@1642 | 14 |
nickjillings@1642 | 15 <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame |
nickjillings@1642 | 16 Remove this if you use the .htaccess --> |
nickjillings@1642 | 17 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> |
nickjillings@1642 | 18 |
nickjillings@1642 | 19 <title>apeTool</title> |
nickjillings@1642 | 20 <meta name="description" content="" /> |
nickjillings@1642 | 21 <meta name="author" content="" /> |
nickjillings@1642 | 22 |
nickjillings@1642 | 23 <!-- Load up the default core JS and CSS files--> |
nickjillings@1642 | 24 <link rel='stylesheet' type='text/css' href='graphics.css'> |
nickjillings@1642 | 25 <link rel='stylesheet' type='text/css' href='structure.css'> |
nickjillings@1642 | 26 <!-- Use jQuery hosted from Google CDN --> |
nickjillings@1642 | 27 <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> |
nickjillings@1642 | 28 <script src='core.js'></script> |
nickjillings@1642 | 29 |
nickjillings@1642 | 30 <!-- Uncomment the following script for automatic loading of projects --> |
nickjillings@1642 | 31 <script> |
nickjillings@1642 | 32 url = 'example_eval/project.xml'; //Project XML document location |
nickjillings@1642 | 33 loadProjectSpec(url); |
nickjillings@1642 | 34 </script> |
nickjillings@1642 | 35 |
nickjillings@1642 | 36 </head> |
nickjillings@1642 | 37 |
nickjillings@1642 | 38 <body> |
nickjillings@1642 | 39 <!-- Load up the default page interface allowing for project setting loads, even if hard-coded--> |
nickjillings@1642 | 40 <!-- Actual test interface design should be contained in the .js for ease of dynamic content--> |
nickjillings@1642 | 41 <div id='topLevelBody'> |
nickjillings@1642 | 42 <p>HTML5 APE Tool</p> |
nickjillings@1642 | 43 </div> |
nickjillings@1642 | 44 </body> |
nickjillings@1642 | 45 </html> |