Remove unused variable

This commit is contained in:
Daniel Imms
2023-08-20 07:33:15 -07:00
parent 6021e6cf81
commit 1529e0bf04
-1
View File
@@ -492,7 +492,6 @@ function initOptions(term: TerminalType): void {
const input = document.getElementById(`opt-${o}`) as HTMLInputElement;
addDomListener(input, 'change', () => {
console.log('change', o, input.value);
let ival;
if (o === 'lineHeight') {
term.options.lineHeight = parseFloat(input.value);
} else if (o === 'scrollSensitivity') {