ace2_inner: Move variable declarations to appropriate scope

pull/5153/head
Richard Hansen 2021-08-15 00:37:03 -04:00
parent bf10e70f2e
commit ca2e008e7b
1 changed files with 2 additions and 2 deletions

View File

@ -2596,7 +2596,6 @@ function Ace2Inner(editorInfo, cssManagers) {
// tab keypress, adding keyCode == 9 to this doesn't help as the event is fired twice
return;
}
let specialHandled = false;
const isTypeForSpecialKey = browser.safari || browser.chrome || browser.firefox
? type === 'keydown' : type === 'keypress';
@ -2619,6 +2618,7 @@ function Ace2Inner(editorInfo, cssManagers) {
} else if (type === 'keydown') {
outsideKeyDown(evt);
}
let specialHandled = false;
if (!stopped) {
const specialHandledInHook = hooks.callAll('aceKeyEvent', {
callstack: currentCallStack,
@ -3543,10 +3543,10 @@ function Ace2Inner(editorInfo, cssManagers) {
const defaultLineHeight = parseInt(innerdocbodyStyles['line-height']);
let docLine = document.body.firstElementChild;
let h = null;
// First loop to calculate the heights from doc body
while (docLine) {
let h;
const nextDocLine = docLine.nextElementSibling;
if (nextDocLine) {
if (lineOffsets.length === 0) {