diff --git a/react/features/conference/components/web/Conference.tsx b/react/features/conference/components/web/Conference.tsx index 1d30e8839a..0cf232323d 100644 --- a/react/features/conference/components/web/Conference.tsx +++ b/react/features/conference/components/web/Conference.tsx @@ -163,7 +163,7 @@ class Conference extends AbstractConference { // Bind event handler so it is only bound once for every instance. this._onFullScreenChange = this._onFullScreenChange.bind(this); - this._onVidespaceTouchStart = this._onVidespaceTouchStart.bind(this); + this._onVideospaceTouchStart = this._onVideospaceTouchStart.bind(this); this._setBackground = this._setBackground.bind(this); } @@ -241,11 +241,11 @@ class Conference extends AbstractConference { className = { _layoutClassName } id = 'videoconference_page' onMouseMove = { isMobileBrowser() ? undefined : this._onShowToolbar }> - + { _showPrejoin || _showLobby || }
+ onTouchStart = { this._onVideospaceTouchStart }> { _showPrejoin || _showLobby || (<> @@ -322,7 +322,7 @@ class Conference extends AbstractConference { * @private * @returns {void} */ - _onVidespaceTouchStart() { + _onVideospaceTouchStart() { this.props.dispatch(toggleToolboxVisible()); }