overte-HifiExperiments/scripts/system/html/record.html
2017-04-11 07:23:52 +12:00

48 lines
1.4 KiB
HTML

<!--
// record.html
//
// Created by David Rowe on 5 Apr 2017.
// Copyright 2017 High Fidelity, Inc.
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
-->
<html>
<head>
<title>Record</title>
<link rel="stylesheet" type="text/css" href="css/edit-style.css">
<link rel="stylesheet" type="text/css" href="css/record.css">
<script type="text/javascript" src="js/record.js"></script>
</head>
<body>
<div class="title">
<label>Record</label>
</div>
<div class="property checkbox">
<input type="checkbox" id="enable-recording">
<label for="enable-recording">Enable recording</label>
</div>
<div class="instructions">
<p id="instructions"></p>
</div>
<div>
<table id="recordings-playing">
<thead>
<tr>
<th>Recordings Being Played</th>
<th></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div>
<p>Number of players: <span id="number-of-players">0</span></p>
</div>
<script>
onBodyLoaded();
</script>
</body>
</html>