diff --git a/interface_config.js b/interface_config.js index 32f8f221a..c45590c2c 100644 --- a/interface_config.js +++ b/interface_config.js @@ -101,6 +101,11 @@ var interfaceConfig = { GENERATE_ROOMNAMES_ON_WELCOME_PAGE: true, + /** + * Hide the logo on the deep linking pages. + */ + HIDE_DEEP_LINKING_LOGO: false, + /** * Hide the invite prompt in the header when alone in the meeting. */ diff --git a/react/features/deep-linking/components/DeepLinkingDesktopPage.web.js b/react/features/deep-linking/components/DeepLinkingDesktopPage.web.js index c5d102966..d37f5d42b 100644 --- a/react/features/deep-linking/components/DeepLinkingDesktopPage.web.js +++ b/react/features/deep-linking/components/DeepLinkingDesktopPage.web.js @@ -72,7 +72,7 @@ class DeepLinkingDesktopPage

extends Component

{ */ render() { const { t } = this.props; - const { NATIVE_APP_NAME, SHOW_DEEP_LINKING_IMAGE } = interfaceConfig; + const { HIDE_DEEP_LINKING_LOGO, NATIVE_APP_NAME, SHOW_DEEP_LINKING_IMAGE } = interfaceConfig; const rightColumnStyle = SHOW_DEEP_LINKING_IMAGE ? null : { width: '100%' }; @@ -82,9 +82,13 @@ class DeepLinkingDesktopPage

extends Component

{

- + { + HIDE_DEEP_LINKING_LOGO + ? null + : + }
{ diff --git a/react/features/deep-linking/components/DeepLinkingMobilePage.web.js b/react/features/deep-linking/components/DeepLinkingMobilePage.web.js index bd60dcecb..4c6f7e237 100644 --- a/react/features/deep-linking/components/DeepLinkingMobilePage.web.js +++ b/react/features/deep-linking/components/DeepLinkingMobilePage.web.js @@ -91,7 +91,7 @@ class DeepLinkingMobilePage extends Component { */ render() { const { _downloadUrl, _room, t } = this.props; - const { NATIVE_APP_NAME, SHOW_DEEP_LINKING_IMAGE } = interfaceConfig; + const { HIDE_DEEP_LINKING_LOGO, NATIVE_APP_NAME, SHOW_DEEP_LINKING_IMAGE } = interfaceConfig; const downloadButtonClassName = `${_SNS}__button ${_SNS}__button_primary`; @@ -115,9 +115,13 @@ class DeepLinkingMobilePage extends Component { return (
- + { + HIDE_DEEP_LINKING_LOGO + ? null + : + }
{