|
|
|
@ -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) { |
|
|
|
|