Merge pull request #882 from jitsi/fix-hide-toolbar

Fixes hiding toolbar.
This commit is contained in:
yanas 2016-09-15 15:10:54 -05:00 committed by GitHub
commit b6e18d8a68
1 changed files with 7 additions and 0 deletions

View File

@ -3,6 +3,7 @@
import {processReplacements, linkify} from './Replacement';
import CommandsProcessor from './Commands';
import ToolbarToggler from '../../toolbars/ToolbarToggler';
import VideoLayout from "../../videolayout/VideoLayout";
import UIUtil from '../../util/UIUtil';
import UIEvents from '../../../../service/UI/UIEvents';
@ -180,6 +181,12 @@ var Chat = {
unreadMessages = 0;
updateVisualNotification();
// Undock the toolbar when the chat is shown and if we're in a
// video mode.
if (VideoLayout.isLargeVideoVisible()) {
ToolbarToggler.dockToolbar(false);
}
// if we are in conversation mode focus on the text input
// if we are not, focus on the display name input
if (APP.settings.getDisplayName())