From e184f67a2bf120c12775a8b37d0e9c58735036e8 Mon Sep 17 00:00:00 2001
From: xc <double72cheng@gmail.com>
Date: Thu, 29 Apr 2021 16:42:19 +0800
Subject: [PATCH] 修改精确时间 更改时间轴

---
 src/main/resources/public/js/renderer.js |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/src/main/resources/public/js/renderer.js b/src/main/resources/public/js/renderer.js
index 9111b83..949a676 100755
--- a/src/main/resources/public/js/renderer.js
+++ b/src/main/resources/public/js/renderer.js
@@ -45,11 +45,11 @@
         this._opt.isDebug = opt.debug === true;
         this._opt.timeout = typeof opt.timeout === 'number' ? opt.timeout : 30;
         this._opt.supportDblclickFullscreen = opt.supportDblclickFullscreen === true;
-        //this._opt.showBandwidth = opt.showBandwidth === true;
-        opt.showBandwidth = true;
+        this._opt.showBandwidth = opt.showBandwidth === true;
+        opt.showBandwidth = false;
         this._opt.operateBtns = Object.assign({
-            fullscreen: true,
-            screenshot: true,
+            fullscreen: false,
+            screenshot: false,
             play: false,
             audio: false
         }, opt.operateBtns || {});
@@ -1357,6 +1357,7 @@
                 this._trigger('fullscreen', value);
             }
             this._fullscreen = value;
+            //解决在预览模式页面无法全屏情况
             if(this._fullscreen==true){
                 this.resize()
             }

--
Gitblit v1.9.1