diff --git a/config.js b/config.js index b5cb2cacb..57cf31d25 100644 --- a/config.js +++ b/config.js @@ -264,11 +264,6 @@ var config = { // a call is hangup. // enableClosePage: false, - // Enabling pre join page will add an additional step before starting the meeting, - // where the user can configure its devices and choose the way he - // joins audio (by phone/or web). - // prejoinPageEnabled: false, - // Disable hiding of remote thumbnails when in a 1-on-1 conference call. // disable1On1Mode: false, diff --git a/react/features/toolbox/components/web/Toolbox.js b/react/features/toolbox/components/web/Toolbox.js index 4b175d223..cf4744a86 100644 --- a/react/features/toolbox/components/web/Toolbox.js +++ b/react/features/toolbox/components/web/Toolbox.js @@ -71,7 +71,6 @@ import { setOverflowMenuVisible, setToolbarHovered } from '../../actions'; -import AudioMuteButton from '../AudioMuteButton'; import AudioSettingsButton from './AudioSettingsButton'; import DownloadButton from '../DownloadButton'; import { isToolboxVisible } from '../../functions'; @@ -81,7 +80,6 @@ import OverflowMenuButton from './OverflowMenuButton'; import OverflowMenuProfileItem from './OverflowMenuProfileItem'; import MuteEveryoneButton from './MuteEveryoneButton'; import ToolbarButton from './ToolbarButton'; -import VideoMuteButton from '../VideoMuteButton'; import VideoSettingsButton from './VideoSettingsButton'; import { ClosedCaptionButton @@ -128,11 +126,6 @@ type Props = { */ _fullScreen: boolean, - /** - * Whether or not the prejoin page is enabled. - */ - _prejoinPageEnabled: boolean, - /** * Whether or not the tile view is enabled. */ @@ -1130,13 +1123,9 @@ class Toolbox extends Component { */ _renderAudioButton() { return this._shouldShowButton('microphone') - ? this.props._prejoinPageEnabled - ? - : + ? : null; } @@ -1147,13 +1136,9 @@ class Toolbox extends Component { */ _renderVideoButton() { return this._shouldShowButton('camera') - ? this.props._prejoinPageEnabled - ? - : + ? : null; } @@ -1343,8 +1328,7 @@ function _mapStateToProps(state) { const { callStatsID, enableFeaturesBasedOnToken, - iAmRecorder, - prejoinPageEnabled + iAmRecorder } = state['features/base/config']; const sharedVideoStatus = state['features/shared-video'].status; const { @@ -1395,7 +1379,6 @@ function _mapStateToProps(state) { _localParticipantID: localParticipant.id, _localRecState: localRecordingStates, _overflowMenuVisible: overflowMenuVisible, - _prejoinPageEnabled: prejoinPageEnabled, _raisedHand: localParticipant.raisedHand, _screensharing: localVideo && localVideo.videoType === 'desktop', _sharingVideo: sharedVideoStatus === 'playing'