Skip to content

Commit

Permalink
[mirotalksfu] - move leave room button
Browse files Browse the repository at this point in the history
  • Loading branch information
miroslavpejic85 committed Jul 21, 2024
1 parent b93e8ba commit 30ed28c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions public/css/Room.css
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,8 @@ body {
}

#bottomButtons button {
width: 55px;
font-size: 1.5rem;
width: 48px;
font-size: 1.4rem;
padding: 10px;
background: var(--btns-bg-color);
border-radius: 10px;
Expand Down
2 changes: 1 addition & 1 deletion public/js/Room.js
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,6 @@ function refreshMainButtonsToolTipPlacement() {
setTippy('whiteboardButton', 'Toggle the whiteboard', placement);
setTippy('settingsButton', 'Toggle the settings', placement);
setTippy('aboutButton', 'About this project', placement);
setTippy('exitButton', 'Leave room', placement);

// Bottom buttons
setTippy('startAudioButton', 'Start the audio', bPlacement);
Expand All @@ -390,6 +389,7 @@ function refreshMainButtonsToolTipPlacement() {
setTippy('stopScreenButton', 'Stop screen share', bPlacement);
setTippy('raiseHandButton', 'Raise your hand', bPlacement);
setTippy('lowerHandButton', 'Lower your hand', bPlacement);
setTippy('exitButton', 'Leave room', bPlacement);
}
}

Expand Down
2 changes: 1 addition & 1 deletion public/views/Room.html
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,6 @@ <h1>Loading</h1>
<button id="settingsButton" class="hidden"><i class="fas fa-cogs"></i></button>
<button id="aboutButton" class="hidden"><i class="fas fa-question"></i></button>
<!-- <button id="restartICE" class="hidden"><i class="fas fa-satellite-dish"></i></button> -->
<button id="exitButton" class="hidden"><i class="fas fa-right-from-bracket"></i></button>
</div>

<div id="bottomButtons" class="fadein">
Expand All @@ -189,6 +188,7 @@ <h1>Loading</h1>
<button id="stopScreenButton" class="hidden"><i class="fas fa-stop-circle"></i></button>
<button id="raiseHandButton" class="hidden"><i class="fas fa-hand-paper"></i></button>
<button id="lowerHandButton" class="hidden"><i id="lowerHandIcon" class="fas fa-hand-paper"></i></button>
<button id="exitButton" class="hidden"><i class="fa-solid fa-phone-slash"></i></button>
</div>

<div id="emojiPickerContainer" class="roomEmoji fadein">
Expand Down

0 comments on commit 30ed28c

Please sign in to comment.