13
0
livetrax/share/web_surfaces/builtin/mixer-demo/index.html
Luciano Iam 2ba8dab95e
WebSockets: update JS client and demo
avoid hardcoded node name strings in mixer-demo
improve mixer-demo design
split ardour.js client into control and metadata mixins
rename JS client class Ardour to ArdourClient
JS client improve mixin implementation
JS client improve manifest parser
NO-OP whitespace and comments
NO-OP update websurface manifest versions
add Ardour icon in mixer-demo
improve mixer-demo scrolling on touch screens
2020-04-17 20:15:10 +02:00

23 lines
665 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Ardour WebSockets Demo</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/widget.css">
</head>
<body>
<div id="main">
<div id="surface">
<div id="top">
<img src="img/ardour-icon.svg">
<span id="manifest"></span>
</div>
<div id="strips"></div>
</div>
<div id="log"></div>
</div>
<script type="module" src="js/main.js"></script>
</body>
</html>