Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b59feb5

Browse files
committed
[CHG]修复工具条被高度限制隐藏后不展示滚动轴问题
1 parent fd2a333 commit b59feb5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

demos/base-demo/ezuikit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@
203203
var domElement = document.getElementById(id); // 间隙
204204

205205
domElement.style.fontSize = 0;
206+
domElement.style.overflowY = 'auto';
206207
domElement.style.position = 'relative';
207208
/**
208209
* 渲染iframe视频框
@@ -527,7 +528,6 @@
527528
}
528529

529530
if (matchFooterOpt().footerContainer) {
530-
debugger
531531
// 底部容器
532532
var footerContainer = document.createElement('div');
533533
footerContainer.setAttribute("class", 'audio-controls');

ezuikit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@
203203
var domElement = document.getElementById(id); // 间隙
204204

205205
domElement.style.fontSize = 0;
206+
domElement.style.overflowY = 'auto';
206207
domElement.style.position = 'relative';
207208
/**
208209
* 渲染iframe视频框
@@ -527,7 +528,6 @@
527528
}
528529

529530
if (matchFooterOpt().footerContainer) {
530-
debugger
531531
// 底部容器
532532
var footerContainer = document.createElement('div');
533533
footerContainer.setAttribute("class", 'audio-controls');

0 commit comments

Comments
 (0)