diff --git a/backend/server.js b/backend/server.js
index 2792fcb..fad5125 100644
--- a/backend/server.js
+++ b/backend/server.js
@@ -9,7 +9,7 @@
* @license For private project or commercial purposes contact us at: license.mirotalk@gmail.com or purchase it directly via Code Canyon:
* @license https://codecanyon.net/item/mirotalk-c2c-webrtc-real-time-cam-2-cam-video-conferences-and-screen-sharing/43383005
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
- * @version 1.1.30
+ * @version 1.1.31
*/
require('dotenv').config();
diff --git a/frontend/css/common.css b/frontend/css/common.css
index 2bbb069..eff099f 100644
--- a/frontend/css/common.css
+++ b/frontend/css/common.css
@@ -19,3 +19,7 @@
::-webkit-scrollbar-track {
background: #1a1b1f;
}
+
+.red {
+ color: red !important;
+}
diff --git a/frontend/html/client.html b/frontend/html/client.html
index 3da2447..28c0529 100644
--- a/frontend/html/client.html
+++ b/frontend/html/client.html
@@ -73,7 +73,7 @@
Waiting
-
+
@@ -85,7 +85,7 @@ Waiting
-
+
diff --git a/frontend/js/client.js b/frontend/js/client.js
index 815e1bd..207f8dd 100644
--- a/frontend/js/client.js
+++ b/frontend/js/client.js
@@ -9,7 +9,7 @@
* @license For private project or commercial purposes contact us at: license.mirotalk@gmail.com or purchase it directly via Code Canyon:
* @license https://codecanyon.net/item/mirotalk-c2c-webrtc-real-time-cam-2-cam-video-conferences-and-screen-sharing/43383005
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
- * @version 1.1.30
+ * @version 1.1.31
*/
const roomId = new URLSearchParams(window.location.search).get('room');
@@ -24,7 +24,7 @@ const initAudioBtn = document.getElementById('initAudioBtn');
const initVideoBtn = document.getElementById('initVideoBtn');
const initScreenShareBtn = document.getElementById('initScreenShareBtn');
const initSettingsBtn = document.getElementById('initSettingsBtn');
-const initHomeBtn = document.getElementById('initHomeBtn');
+const initLeaveBtn = document.getElementById('initLeaveBtn');
const buttonsBar = document.getElementById('buttonsBar');
const hideMeBtn = document.getElementById('hideMeBtn');
const audioBtn = document.getElementById('audioBtn');
@@ -32,7 +32,7 @@ const videoBtn = document.getElementById('videoBtn');
const swapCameraBtn = document.getElementById('swapCameraBtn');
const settingsBtn = document.getElementById('settingsBtn');
const screenShareBtn = document.getElementById('screenShareBtn');
-const homeBtn = document.getElementById('homeBtn');
+const leaveBtn = document.getElementById('leaveBtn');
const settings = document.getElementById('settings');
const settingsCloseBtn = document.getElementById('settingsCloseBtn');
const audioSource = document.getElementById('audioSource');
@@ -189,7 +189,7 @@ const tooltips = [
{ element: initAudioBtn, text: 'Toggle audio', position: 'top' },
{ element: initScreenShareBtn, text: 'Toggle screen sharing', position: 'top' },
{ element: initSettingsBtn, text: 'Toggle settings', position: 'top' },
- { element: initHomeBtn, text: 'Go to home page', position: 'top' },
+ { element: initLeaveBtn, text: 'Leave room', position: 'top' },
{ element: hideMeBtn, text: 'Hide myself', position: 'top' },
{ element: videoBtn, text: 'Toggle video', position: 'top' },
{ element: audioBtn, text: 'Toggle audio', position: 'top' },
@@ -197,7 +197,7 @@ const tooltips = [
{ element: screenShareBtn, text: 'Toggle screen sharing', position: 'top' },
{ element: chatOpenBtn, text: 'Toggle chat', position: 'top' },
{ element: settingsBtn, text: 'Toggle settings', position: 'top' },
- { element: homeBtn, text: 'Go to home page', position: 'top' },
+ { element: leaveBtn, text: 'Leave room', position: 'top' },
//...
];
@@ -741,7 +741,7 @@ function handleIncomingDataChannelMessage(config) {
}
function handleEvents() {
- initHomeBtn.onclick = () => {
+ initLeaveBtn.onclick = () => {
endCall();
};
copyRoomBtn.onclick = () => {
@@ -901,7 +901,7 @@ function handleEvents() {
}
checkLineBreaks();
};
- homeBtn.onclick = () => {
+ leaveBtn.onclick = () => {
endCall();
};
}
diff --git a/package.json b/package.json
index 9bd3b4b..1ce3ca8 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "mirotalkc2c",
- "version": "1.1.30",
+ "version": "1.1.31",
"description": "A free WebRTC Cam-2-Cam browser-based video calls",
"main": "server.js",
"scripts": {