annotate nodejs-server/index.html @ 54:c0b34039917a tip

Server: added an exposed function to log the start time of a performance (for log-to-audio sync)
author Mathieu Barthet <mathieu.barthet@eecs.qmul.ac.uk>
date Wed, 14 Oct 2015 19:20:08 +0100
parents 63cc59d5b665
children
rev   line source
gyorgyf@0 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
gyorgyf@0 2 "http://www.w3.org/TR/html4/loose.dtd">
gyorgyf@0 3 <html>
gyorgyf@0 4 <head>
gyorgyf@0 5 <title>Mood Conductor</title>
gyorgyf@0 6 <script src="app.js"></script>
mgeorgi@10 7 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
gyorgyf@0 8 </head>
gyorgyf@0 9 <body onload="Application.init()" style="margin:0px;padding:0px">
mgeorgi@6 10 <canvas width="320" height="320" id="canvas">
gyorgyf@0 11 <span id="marker" style="position:relative; background:#ccc;"></span>
mgeorgi@6 12 </canvas>
mgeorgi@6 13 <div style="font-size:40px;font-weight:bold" id="label">
gyorgyf@0 14 </div>
gyorgyf@0 15 </body>
gyorgyf@0 16 </html>