annotate test_create/test_create.html @ 652:357b900abc42
Dev_main
Adapted test_create.html to work with new Specification.js file.
author |
Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
date |
Thu, 31 Mar 2016 14:32:22 +0100 |
parents |
ce3d4d6d01b8 |
children |
|
rev |
line source |
n@501
|
1 <html>
|
n@501
|
2 <head>
|
n@501
|
3 <!-- This defines the test creator tool for the Web Audio Evaluation Toolbox -->
|
n@501
|
4 <link rel='stylesheet' type="text/css" href="style.css"/>
|
giuliomoro@534
|
5 <link rel='stylesheet' type="text/css" href="custom.css"/>
|
n@501
|
6 <script type="text/javascript">
|
giuliomoro@534
|
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@501
|
8 // Copy of Specifiation node from Core.js
|
n@501
|
9 </script>
|
n@512
|
10 <script src="../jquery-2.1.4.js"></script>
|
n@650
|
11 <script type="text/javascript" src='../specification.js'></script>
|
n@650
|
12 <script type="text/javascript" src="test_core.js"></script>
|
n@501
|
13 </head>
|
n@501
|
14 <body>
|
n@501
|
15 <div id="popupHolder"></div>
|
n@501
|
16 <div id="blanket"></div>
|
n@501
|
17 <div id="content"></div>
|
n@501
|
18 </body>
|
giuliomoro@534
|
19 </html>
|