[mirotalksfu] - fix typo (Hylton)

main
Miroslav Pejic 4 years ago
parent c89d7f93f3
commit 19a412c057

@ -127,7 +127,7 @@ app.get('/join/', (req, res) => {
res.redirect('/');
});
// join to room
// join room
app.get('/join/*', (req, res) => {
if (hostCfg.authenticated) {
if (Object.keys(req.query).length > 0) {

@ -65,7 +65,7 @@ const socket = io();
function initClient() {
if (!DetectRTC.isMobileDevice) {
setTippy('shareButton', 'Share the room', 'right');
setTippy('shareButton', 'Share room', 'right');
setTippy('startAudioButton', 'Start the audio', 'right');
setTippy('stopAudioButton', 'Stop the audio', 'right');
setTippy('startVideoButton', 'Start the video', 'right');
@ -76,7 +76,7 @@ function initClient() {
setTippy('stopScreenButton', 'Stop screen share', 'right');
setTippy('whiteboardButton', 'Toggle the whiteboard', 'right');
setTippy('settingsButton', 'Toggle the settings', 'right');
setTippy('exitButton', 'Leave the room', 'right');
setTippy('exitButton', 'Leave room', 'right');
setTippy('tabDevicesBtn', 'Devices', 'top');
setTippy('tabRecordingBtn', 'Recording', 'top');
setTippy('tabRoomBtn', 'Room', 'top');
@ -400,7 +400,7 @@ async function shareRoom(useNavigator = false) {
<canvas id="qrRoom"></canvas>
</div>
<br/><br/>
<p style="background:transparent; color:white;">Share this meeting invite others to join.</p>
<p style="background:transparent; color:white;">Invite others to join. Share this meeting link.</p>
<p style="background:transparent; color:rgb(8, 189, 89);">` +
RoomURL +
`</p>`,
@ -465,14 +465,14 @@ function shareRoomByEmail(message) {
}
// ####################################################
// JOIN TO ROOM
// JOIN ROOM
// ####################################################
function joinRoom(peer_name, room_id) {
if (rc && rc.isConnected()) {
console.log('Already connected to a room');
} else {
console.log('05 ----> join to Room ' + room_id);
console.log('05 ----> join Room ' + room_id);
rc = new RoomClient(
remoteAudios,
videoMediaContainer,

@ -1881,11 +1881,11 @@ class RoomClient {
imageAlt: 'mirotalksfu-file-sharing',
imageUrl: image.share,
position: 'center',
title: 'Share the file',
title: 'Share file',
input: 'file',
inputAttributes: {
accept: this.fileSharingInput,
'aria-label': 'Select the file',
'aria-label': 'Select file',
},
showDenyButton: true,
confirmButtonText: `Send`,

@ -35,8 +35,8 @@ const commands = {
participantsVideoOff: 'stop the participants video',
participantsAudioOff: 'stop the participants audio',
participantsKickOut: 'kick out the participants',
fileShareOn: 'open the file',
fileShareOff: 'close the file',
fileShareOn: 'open a file',
fileShareOff: 'close a file',
youtubeOn: 'share the YouTube',
youtubeOff: 'close the YouTube',
swapCamera: 'swap the camera',

@ -121,7 +121,7 @@
class="button button-primary pulse"
onclick="{window.location.href = '/join/' + document.getElementById('roomName').value}"
>
Join to room
Join Room
</button>
<script>
document.getElementById('roomName').onkeyup = (e) => {

@ -124,7 +124,7 @@
class="button button-primary pulse"
onclick="{window.location.href = '/join/' + document.getElementById('roomName').value}"
>
Join to room
Join Room
</button>
<script>
document.getElementById('roomName').onkeyup = (e) => {

Loading…
Cancel
Save