From e36dfb44123b2551967a00845f56814c5567e590 Mon Sep 17 00:00:00 2001 From: thomas Date: Tue, 11 Jul 2017 18:58:36 +0200 Subject: [PATCH] Fix trailing whitespace --- src/SelectionManager.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/SelectionManager.ts b/src/SelectionManager.ts index 394fc4d8f5..e9eccd06d2 100644 --- a/src/SelectionManager.ts +++ b/src/SelectionManager.ts @@ -325,13 +325,13 @@ export class SelectionManager extends EventEmitter { private _refresh(): void { this._refreshAnimationFrame = null; this.emit('refresh', { start: this._model.finalSelectionStart, end: this._model.finalSelectionEnd }); - + // Set / unset the 'selection-active' class on the terminal. // If the class exists, the background will be rendered inside a :before // element, which allows us to draw the selection between the foreground // and the background - this.hasSelection ? - this._terminal.element.classList.add('selection-active') : + this.hasSelection ? + this._terminal.element.classList.add('selection-active') : this._terminal.element.classList.remove('selection-active'); }