|
@@ -10,7 +10,7 @@ let toolbarTimeout = interfaceConfig.INITIAL_TOOLBAR_TIMEOUT;
|
10
|
10
|
/**
|
11
|
11
|
* If true the toolbar will be always displayed
|
12
|
12
|
*/
|
13
|
|
-let alwaysVisibleToolbar = (config.alwaysVisibleToolbar === true);
|
|
13
|
+let alwaysVisibleToolbar = false;
|
14
|
14
|
|
15
|
15
|
function showDesktopSharingButton() {
|
16
|
16
|
if (APP.conference.isDesktopSharingEnabled &&
|
|
@@ -44,6 +44,12 @@ function hideToolbar() {
|
44
|
44
|
}
|
45
|
45
|
|
46
|
46
|
const ToolbarToggler = {
|
|
47
|
+ /**
|
|
48
|
+ * Initializes the ToolbarToggler
|
|
49
|
+ */
|
|
50
|
+ init() {
|
|
51
|
+ alwaysVisibleToolbar = (config.alwaysVisibleToolbar === true);
|
|
52
|
+ },
|
47
|
53
|
/**
|
48
|
54
|
* Sets the value of alwaysVisibleToolbar variable.
|
49
|
55
|
* @param value {boolean} the new value of alwaysVisibleToolbar variable
|