Fix: move let definition into one line

This commit is contained in:
eight 2017-11-09 06:01:31 +08:00
parent e0bd991482
commit f70cf01155

View File

@ -10,11 +10,7 @@ function createAppliesToLineWidget(cm) {
]; ];
const THROTTLE_DELAY = 400; const THROTTLE_DELAY = 400;
let widgets = []; let widgets = [];
let timer; let timer, fromLine, toLine, style, isInit;
let fromLine;
let toLine;
let style;
let isInit;
return {toggle}; return {toggle};