1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-16 19:21:52 +00:00

change variable name #1448

This commit is contained in:
roottool
2019-01-16 23:14:21 +09:00
parent ea5970ab1c
commit 294bf742cd

View File

@@ -845,8 +845,8 @@ export default class MarkdownPreview extends React.Component {
const zoomImgWidth = img.width * magnification const zoomImgWidth = img.width * magnification
const zoomImgHeight = img.height * magnification const zoomImgHeight = img.height * magnification
const zoomInImgTop = document.body.clientHeight / 2 - zoomImgHeight / 2 const zoomImgTop = document.body.clientHeight / 2 - zoomImgHeight / 2
const zoomInImgLeft = document.body.clientWidth / 2 - zoomImgWidth / 2 const zoomImgLeft = document.body.clientWidth / 2 - zoomImgWidth / 2
const originalImgTop = img.y + rect.top const originalImgTop = img.y + rect.top
const originalImgLeft = img.x + rect.left const originalImgLeft = img.x + rect.left
const originalImgRect = { const originalImgRect = {
@@ -856,8 +856,8 @@ export default class MarkdownPreview extends React.Component {
height: `${img.height}px` height: `${img.height}px`
} }
const zoomInImgRect = { const zoomInImgRect = {
top: `${baseOnWidth ? zoomInImgTop : 0}px`, top: `${baseOnWidth ? zoomImgTop : 0}px`,
left: `${baseOnWidth ? 0 : zoomInImgLeft}px`, left: `${baseOnWidth ? 0 : zoomImgLeft}px`,
width: `${zoomImgWidth}px`, width: `${zoomImgWidth}px`,
height: `${zoomImgHeight}px` height: `${zoomImgHeight}px`
} }
@@ -867,8 +867,8 @@ export default class MarkdownPreview extends React.Component {
zoomImg.src = img.src zoomImg.src = img.src
zoomImg.style = ` zoomImg.style = `
position: absolute; position: absolute;
top: ${baseOnWidth ? zoomInImgTop : 0}px; top: ${baseOnWidth ? zoomImgTop : 0}px;
left: ${baseOnWidth ? 0 : zoomInImgLeft}px; left: ${baseOnWidth ? 0 : zoomImgLeft}px;
width: ${zoomImgWidth}; width: ${zoomImgWidth};
height: ${zoomImgHeight}px; height: ${zoomImgHeight}px;
` `