ace2_inner: Delete unnecessary `innerdocbody` variable

This commit is contained in:
Richard Hansen 2021-08-14 22:18:29 -04:00
parent 7d807d2fc5
commit e1a024847c
1 changed files with 1 additions and 2 deletions

View File

@ -3543,8 +3543,7 @@ function Ace2Inner(editorInfo, cssManagers) {
// but as it's non-text type the line-height/margins might not be present and it
// could be that this breaks a theme that has a different default line height..
// So instead of using an integer here we get the value from the Editor CSS.
const innerdocbody = document.body;
const innerdocbodyStyles = getComputedStyle(innerdocbody);
const innerdocbodyStyles = getComputedStyle(document.body);
const defaultLineHeight = parseInt(innerdocbodyStyles['line-height']);
let docLine = document.body.firstChild;