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;
let widgets = [];
let timer;
let fromLine;
let toLine;
let style;
let isInit;
let timer, fromLine, toLine, style, isInit;
return {toggle};