1
0
forked from mirror/misskey
This commit is contained in:
kakkokari-gtyih 2024-07-06 10:53:51 +09:00
parent 0555e98c3f
commit ea3db748c7

View File

@ -251,9 +251,9 @@ function windowEventHandler(event: MessageEvent) {
function calcScale() { function calcScale() {
if (!resizerRootEl.value) return; if (!resizerRootEl.value) return;
const previewWidth = resizerRootEl.value.clientWidth - 40; // 20px const previewWidth = resizerRootEl.value.clientWidth - 40; // 20px
const previewHeight = resizerRootEl.value.clientHeight - 40; // 20px28px const previewHeight = resizerRootEl.value.clientHeight - 40; // 20px
const iframeWidth = 500; const iframeWidth = 500;
const scale = Math.min(previewWidth / iframeWidth, previewHeight / iframeHeight.value, 1); // const scale = Math.min(previewWidth / iframeWidth, previewHeight / iframeHeight.value, 1); // 1
iframeScale.value = scale; iframeScale.value = scale;
} }