瀏覽代碼

Adds config property that disables hiding of toolbar.

j8
hristoterezov 10 年之前
父節點
當前提交
21fef57bc4
共有 3 個文件被更改,包括 1706 次插入1785 次删除
  1. 1
    1
      index.html
  2. 1702
    1784
      libs/app.bundle.js
  3. 3
    0
      modules/UI/toolbars/ToolbarToggler.js

+ 1
- 1
index.html 查看文件

@@ -19,7 +19,7 @@
19 19
     <script src="libs/popover.js?v=1"></script><!-- bootstrap tooltip lib -->
20 20
     <script src="libs/toastr.js?v=1"></script><!-- notifications lib -->
21 21
     <script src="interface_config.js?v=5"></script>
22
-    <script src="libs/app.bundle.js?v=68"></script>
22
+    <script src="libs/app.bundle.js?v=69"></script>
23 23
     <script src="analytics.js?v=1"></script><!-- google analytics plugin -->
24 24
     <link rel="stylesheet" href="css/font.css?v=7"/>
25 25
     <link rel="stylesheet" href="css/toastr.css?v=1">

+ 1702
- 1784
libs/app.bundle.js
文件差異過大導致無法顯示
查看文件


+ 3
- 0
modules/UI/toolbars/ToolbarToggler.js 查看文件

@@ -15,6 +15,9 @@ function showDesktopSharingButton() {
15 15
  * Hides the toolbar.
16 16
  */
17 17
 function hideToolbar() {
18
+    if(config.alwaysVisibleToolbar)
19
+        return;
20
+
18 21
     var header = $("#header"),
19 22
         bottomToolbar = $("#bottomToolbar");
20 23
     var isToolbarHover = false;

Loading…
取消
儲存