Mercurial > hg > webaudioevaluationtool
annotate test_create/test_create.html @ 2209:394bf5310fc4
Instructions update: primarily Interfaces section. Moved 'Building your own interface' section under it.
author | Brecht De Man <b.deman@qmul.ac.uk> |
---|---|
date | Tue, 12 Apr 2016 20:32:00 +0100 |
parents | ed5a54029157 |
children |
rev | line source |
---|---|
nickjillings@1370 | 1 <html> |
nickjillings@1370 | 2 <head> |
nickjillings@1370 | 3 <!-- This defines the test creator tool for the Web Audio Evaluation Toolbox --> |
nickjillings@1370 | 4 <link rel='stylesheet' type="text/css" href="style.css"/> |
giuliomoro@1304 | 5 <link rel='stylesheet' type="text/css" href="custom.css"/> |
nickjillings@1370 | 6 <script type="text/javascript"> |
giuliomoro@1304 | 7 window.onbeforeunload = function (e) {var message = 'If you leave the page now, any unsaved changes will be lost', e = e || window.event; if (e) { e.returnValue = message;}return message;}; |
nickjillings@1370 | 8 // Copy of Specifiation node from Core.js |
nickjillings@1370 | 9 </script> |
nickjillings@1381 | 10 <script src="../jquery-2.1.4.js"></script> |
nickjillings@2192 | 11 <script type="text/javascript" src='../specification.js'></script> |
nickjillings@2192 | 12 <script type="text/javascript" src="test_core.js"></script> |
nickjillings@1370 | 13 </head> |
nickjillings@1370 | 14 <body> |
nickjillings@1370 | 15 <div id="popupHolder"></div> |
nickjillings@1370 | 16 <div id="blanket"></div> |
nickjillings@1370 | 17 <div id="content"></div> |
nickjillings@1370 | 18 </body> |
giuliomoro@1304 | 19 </html> |