Adds config property that disables hiding of toolbar.
This commit is contained in:
parent
777422c87d
commit
21fef57bc4
|
@ -19,7 +19,7 @@
|
||||||
<script src="libs/popover.js?v=1"></script><!-- bootstrap tooltip lib -->
|
<script src="libs/popover.js?v=1"></script><!-- bootstrap tooltip lib -->
|
||||||
<script src="libs/toastr.js?v=1"></script><!-- notifications lib -->
|
<script src="libs/toastr.js?v=1"></script><!-- notifications lib -->
|
||||||
<script src="interface_config.js?v=5"></script>
|
<script src="interface_config.js?v=5"></script>
|
||||||
<script src="libs/app.bundle.js?v=68"></script>
|
<script src="libs/app.bundle.js?v=69"></script>
|
||||||
<script src="analytics.js?v=1"></script><!-- google analytics plugin -->
|
<script src="analytics.js?v=1"></script><!-- google analytics plugin -->
|
||||||
<link rel="stylesheet" href="css/font.css?v=7"/>
|
<link rel="stylesheet" href="css/font.css?v=7"/>
|
||||||
<link rel="stylesheet" href="css/toastr.css?v=1">
|
<link rel="stylesheet" href="css/toastr.css?v=1">
|
||||||
|
|
1558
libs/app.bundle.js
1558
libs/app.bundle.js
File diff suppressed because it is too large
Load Diff
|
@ -15,6 +15,9 @@ function showDesktopSharingButton() {
|
||||||
* Hides the toolbar.
|
* Hides the toolbar.
|
||||||
*/
|
*/
|
||||||
function hideToolbar() {
|
function hideToolbar() {
|
||||||
|
if(config.alwaysVisibleToolbar)
|
||||||
|
return;
|
||||||
|
|
||||||
var header = $("#header"),
|
var header = $("#header"),
|
||||||
bottomToolbar = $("#bottomToolbar");
|
bottomToolbar = $("#bottomToolbar");
|
||||||
var isToolbarHover = false;
|
var isToolbarHover = false;
|
||||||
|
|
Loading…
Reference in New Issue