mirror of
https://github.com/overte-org/overte.git
synced 2025-06-27 00:09:50 +02:00
47 lines
1.3 KiB
HTML
47 lines
1.3 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>
|
|
<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>
|
|
<div>
|
|
<input id="load-button" type="button" value="Load" disabled />
|
|
</div>
|
|
<div>
|
|
<input id="record-button" class="red" type="button" value="Record" />
|
|
</div>
|
|
<script>
|
|
onBodyLoaded();
|
|
</script>
|
|
</body>
|
|
</html>
|