Mercurial > hg > webaudioevaluationtool
annotate test_create/test_create.html @ 1288:8b4635afb05b
Merge
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Thu, 31 Mar 2016 15:48:57 +0100 |
parents | 6c819878ac85 |
children |
rev | line source |
---|---|
n@1170 | 1 <html> |
n@1170 | 2 <head> |
n@1170 | 3 <!-- This defines the test creator tool for the Web Audio Evaluation Toolbox --> |
n@1170 | 4 <link rel='stylesheet' type="text/css" href="style.css"/> |
giuliomoro@1088 | 5 <link rel='stylesheet' type="text/css" href="custom.css"/> |
n@1170 | 6 <script type="text/javascript"> |
giuliomoro@1088 | 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;}; |
n@1170 | 8 // Copy of Specifiation node from Core.js |
n@1170 | 9 </script> |
n@1181 | 10 <script src="../jquery-2.1.4.js"></script> |
n@1284 | 11 <script type="text/javascript" src='../specification.js'></script> |
n@1284 | 12 <script type="text/javascript" src="test_core.js"></script> |
n@1170 | 13 </head> |
n@1170 | 14 <body> |
n@1170 | 15 <div id="popupHolder"></div> |
n@1170 | 16 <div id="blanket"></div> |
n@1170 | 17 <div id="content"></div> |
n@1170 | 18 </body> |
giuliomoro@1088 | 19 </html> |