mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-05-08 08:49:38 +02:00
33 lines
967 B
HTML
33 lines
967 B
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>
|
|
<script>
|
|
onBodyLoaded();
|
|
</script>
|
|
</body>
|
|
</html>
|