From 2db0ac8edce8d0bb89428f6a244c16b42232a639 Mon Sep 17 00:00:00 2001 From: thomas Date: Wed, 12 Jul 2017 18:05:25 +0200 Subject: [PATCH] Remove old comment --- src/xterm.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/xterm.js b/src/xterm.js index f705d7be39..ab09800004 100644 --- a/src/xterm.js +++ b/src/xterm.js @@ -449,7 +449,6 @@ Terminal.prototype.setOption = function(key, value) { switch (key) { case 'cursorBlink': this.setCursorBlinking(value); break; case 'cursorStyle': - // Style 'block' applies with no class this.element.classList.toggle(`xterm-cursor-style-block`, value === 'block'); this.element.classList.toggle(`xterm-cursor-style-underline`, value === 'underline'); this.element.classList.toggle(`xterm-cursor-style-bar`, value === 'bar');