diff options
Diffstat (limited to 'client/index.html')
-rw-r--r-- | client/index.html | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/client/index.html b/client/index.html index 1025d69..daa861b 100644 --- a/client/index.html +++ b/client/index.html @@ -17,17 +17,25 @@ Sometimes, you will need to press the "Sync" button more than once. That's mostly due to bandwidth capabilities of both the server and the client. The "tune" would be right if you press it multiple times and land near the same timespace over and - over. Three to four times would be enough. + over. </p> - <button onclick="sync_radio()">Sync!</button> - <progress></progress> - <div style="display:flex; flex-direction:row; align-items: center; gap: 3px;"> + <p> + Ideally, if "Listening at:" and "Show playback:" have the same value then you are + in sync! + </p> + <div style="display: flex; flex-direction: row; align-items: center; gap: 3px;"> + <button onclick="sync_radio()">Sync!</button> + <progress style="width: 100%;"></progress> + </div> + <div style="display:flex; flex-direction:row; align-items: center; gap: 3px; justify-content: space-around;"> + <p>Listening at:</p> + <pre class="listening-at"></pre> <p>Show playback: </p> <pre class="relative-time"></pre> <p>/</p> <pre class="show-duration"></pre> </div> - <div class="radio-player" hidden> + <div class="radio-player"> <audio preload="auto" controls style="width: 100%;"> <source src=""/> </audio> @@ -40,7 +48,7 @@ <tr> <th>Artist</th> <th>Title</th> - <th>Duration</th> + <th>Starts On</th> </tr> <tr> <td class="artist"></td> @@ -67,9 +75,9 @@ <h2>Data segments</h2> <div class="groups"> <h3>Hash of current show</h3> - <p class="current-show-hash"></p> + <p style="overflow-x: auto;" class="current-show-hash"></p> <h3>Hash of list</h3> - <p class="list-hash"></p> + <p style="overflow-x: auto;" class="list-hash"></p> </div> </div> <div> |