[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('/'); res.redirect('/');
}); });
// join to room // join room
app.get('/join/*', (req, res) => { app.get('/join/*', (req, res) => {
if (hostCfg.authenticated) { if (hostCfg.authenticated) {
if (Object.keys(req.query).length > 0) { if (Object.keys(req.query).length > 0) {

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

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

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

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

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

Loading…
Cancel
Save