Browse Source

CHART-9916 fix:top恢复

feature/10.0
Fay 5 years ago
parent
commit
1da04df391
  1. 6
      src/main/resources/com/finebi/plugin/web/plugin.screen_adaptive.js
  2. 6
      src/main/resources/com/finebi/plugin/web/scripts/entry.js

6
src/main/resources/com/finebi/plugin/web/plugin.screen_adaptive.js

@ -34,11 +34,11 @@
if (bounds.height * bounds.scale < html.clientHeight) {
transformY = (html.clientHeight - bounds.height * bounds.scale) / 2;
document.body.style.top = transformY + "px";
html.style.overflowY = "hidden";
} else {
transformY = 0;
}
document.body.style.top = transformY + "px";
window.scale = window.devicePixelRatio * scale;
@ -183,11 +183,11 @@
removeListener(selectHandler);
}
function selectHandler () {
var selectHandler = BI.debounce(function () {
selected && prepareEnv();
selected ? transformScale() : removeScale();
!selected && restoreEnv();
}
}, 30);
function updateScale () {
if (html.getBoundingClientRect().width !== document.body.getBoundingClientRect().width) {

6
src/main/resources/com/finebi/plugin/web/scripts/entry.js

@ -34,11 +34,11 @@
if (bounds.height * bounds.scale < html.clientHeight) {
transformY = (html.clientHeight - bounds.height * bounds.scale) / 2;
document.body.style.top = transformY + "px";
html.style.overflowY = "hidden";
} else {
transformY = 0;
}
document.body.style.top = transformY + "px";
window.scale = window.devicePixelRatio * scale;
@ -183,11 +183,11 @@
removeListener(selectHandler);
}
function selectHandler () {
var selectHandler = BI.debounce(function () {
selected && prepareEnv();
selected ? transformScale() : removeScale();
!selected && restoreEnv();
}
}, 30);
function updateScale () {
if (html.getBoundingClientRect().width !== document.body.getBoundingClientRect().width) {

Loading…
Cancel
Save