Fixes a minor bug in toolbar hide/show behavior when etherpad or prezi is opened.
This commit is contained in:
parent
9e29378d7f
commit
1dcbf7fce6
6
chat.js
6
chat.js
|
@ -204,8 +204,10 @@ var Chat = (function (my) {
|
|||
duration: 500});
|
||||
}
|
||||
else {
|
||||
// Undock the toolbar when the chat is shown.
|
||||
Toolbar.dockToolbar(false);
|
||||
// Undock the toolbar when the chat is shown and if we're in a
|
||||
// video mode.
|
||||
if (VideoLayout.isLargeVideoVisible())
|
||||
Toolbar.dockToolbar(false);
|
||||
|
||||
videospace.animate({right: chatSize[0],
|
||||
width: videospaceWidth,
|
||||
|
|
Loading…
Reference in New Issue