annotate test_create/test_create.html @ 1925:788a9af36b66

Major updates. Specification Nodes now own file (specification.js). Updating Analysis to allow filtering based on survey responses.
author Nicholas Jillings <nickjillings@users.noreply.github.com>
date Thu, 31 Mar 2016 13:31:42 +0100
parents c0ff84783b59
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@1925 11 <script type="text/javascript" src='../specification.js'></script>
nickjillings@1925 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>