From 901443915901034a41dc8eef9da493caf0f486cf Mon Sep 17 00:00:00 2001 From: Miroslav Pejic Date: Fri, 4 Mar 2022 18:05:02 +0100 Subject: [PATCH] [mirotalksfu] - update readme --- README.md | 1 + public/js/Room.js | 6 ------ 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/README.md b/README.md index cd16458..c91d457 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,7 @@ Open the app with the following **supported browsers** and many more. - Recording your Screen, Audio, or Video - Share any YouTube video in real-time to your participants - Full-Screen Mode on mouse click on the Video element +- Possibility to Change UI Themes - Possibility to protect your Host with username and password (default disabled) - Supports [REST API](app/api/README.md) (Application Programming Interface) diff --git a/public/js/Room.js b/public/js/Room.js index 26b0b96..2a47914 100644 --- a/public/js/Room.js +++ b/public/js/Room.js @@ -1561,12 +1561,6 @@ function setTheme(theme) { document.documentElement.style.setProperty('--msger-bg', 'radial-gradient(#666, #333)'); document.documentElement.style.setProperty('--wb-bg', 'radial-gradient(#797979, #000)'); break; - case 'green': - swalBackground = 'radial-gradient(#393, #000)'; - document.documentElement.style.setProperty('--body-bg', 'radial-gradient(#393, #000)'); - document.documentElement.style.setProperty('--msger-bg', 'radial-gradient(#393, #000)'); - document.documentElement.style.setProperty('--wb-bg', 'radial-gradient(#393, #000)'); - break; //... } }