annotate test_create/test_create.html @ 2202:61c8e13f1e2e

Merge branch 'master' of https://github.com/BrechtDeMan/WebAudioEvaluationTool
author www-data <www-data@sucuk.dcs.qmul.ac.uk>
date Fri, 08 Apr 2016 13:20:54 +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>