diff --git a/frontend/css/client.css b/frontend/css/client.css index f9de1ad..f8434e3 100644 --- a/frontend/css/client.css +++ b/frontend/css/client.css @@ -568,9 +568,11 @@ iframe { } #addRoomDiv { + display: flex; position: absolute; float: right; right: 15px; + gap: 5px; } .add-row-select-options { @@ -841,6 +843,9 @@ tr:nth-child(even) { left: 250px; width: calc(100% - 250px); } + .dash-content .boxes { + display: flex; + } } @media (max-width: 780px) { @@ -854,12 +859,18 @@ tr:nth-child(even) { .accountDiv { width: 100%; } + .dash-content .boxes { + display: flex; + } } @media (max-width: 560px) { .dash-content .boxes .box { width: 100%; } + .dash-content .boxes { + display: none; + } } @media (max-width: 450px) { diff --git a/frontend/html/client.html b/frontend/html/client.html index 1eed07d..01f2df0 100644 --- a/frontend/html/client.html +++ b/frontend/html/client.html @@ -234,7 +234,6 @@
- Rooms
diff --git a/frontend/js/client.js b/frontend/js/client.js index b45f91d..5ccbfe6 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/a-selfhosted-mirotalks-webrtc-rooms-scheduler-server/42643313 * @author Miroslav Pejic - miroslav.pejic.85@gmail.com - * @version 1.1.18 + * @version 1.1.19 */ const isMobile = !!/Android|webOS|iPhone|iPad|iPod|BB10|BlackBerry|IEMobile|Opera Mini|Mobile|mobile/i.test( @@ -274,8 +274,8 @@ function handleUserRoles() { } function toggleElements() { - elemDisplay(hideBoxesDS, true); - elemDisplay(showBoxesDS, false); + elemDisplay(hideBoxesDS, !isMobile); + elemDisplay(showBoxesDS, isMobile); elemDisplay(navP2P, config.MiroTalk.P2P.Visible); elemDisplay(navSFU, config.MiroTalk.SFU.Visible); elemDisplay(navC2C, config.MiroTalk.C2C.Visible); diff --git a/package.json b/package.json index c341bab..e5f6387 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mirotalkwebrtc", - "version": "1.1.18", + "version": "1.1.19", "description": "MiroTalk WebRTC admin", "main": "server.js", "scripts": { @@ -33,8 +33,8 @@ "license": "AGPL-3.0", "homepage": "https://github.com/miroslavpejic85/mirotalkwebrtc", "dependencies": { - "@sentry/node": "^8.40.0", - "axios": "^1.7.7", + "@sentry/node": "^8.41.0", + "axios": "^1.7.8", "bcryptjs": "^2.4.3", "colors": "1.4.0", "compression": "^1.7.5", @@ -44,7 +44,7 @@ "express": "^4.21.1", "jsonwebtoken": "^9.0.2", "js-yaml": "^4.1.0", - "mongoose": "^8.8.2", + "mongoose": "^8.8.3", "ngrok": "^5.0.0-beta.2", "nodemailer": "^6.9.16", "swagger-ui-express": "^5.0.1", @@ -52,6 +52,6 @@ }, "devDependencies": { "nodemon": "^3.1.7", - "prettier": "3.3.3" + "prettier": "3.4.1" } }