Skip to content

Commit

Permalink
ui: move the information about the room population higher
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffkaufman committed Jan 16, 2021
1 parent 2dabcf5 commit 4b97558
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion html/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ function update_calendar() {
"Otherwise, please come back later.";
} else if (upcomingEvent) {
window.currentEvent.innerText = "Next Event: \"" + upcomingEvent.summary +
"\" in " + prettyTime(upcomingEvent.futureMs);
"\" in " + prettyTime(upcomingEvent.futureMs) + ".";
if (upcomingEvent.futureMs < 60*60*1000) {
window.eventWelcome.innerText =
"There are no events right now, but in " +
Expand Down
7 changes: 5 additions & 2 deletions html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,10 @@ <h1>Bucket Brigade</h1>
<a target="_blank" href="https://github.com/gwillen/solstice-audio-test/issues/new">Report a problem</a>
</div>

<div id=currentEvent>loading...</div>
<div>
<span id=currentEvent></span>
<span id=currentUsers></span>
</div>
</div>

<div id=tabrow>
Expand Down Expand Up @@ -659,7 +662,7 @@ <h3>Settings that affect everyone</h3>
<div id=tutorial>
<div id=tutorial_questions>
Welcome! This is a program for singing with people over the
Internet. <span id=eventWelcome></span> <span id=currentUsers></span>
Internet. <span id=eventWelcome></span>

<p>
<br>
Expand Down

0 comments on commit 4b97558

Please sign in to comment.