From 144798a3368e8a92a5caecb112814ca9760c25c3 Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Sat, 13 Oct 2018 18:56:09 +0200 Subject: [PATCH] lint --- terminus-terminal/src/frontends/htermFrontend.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/terminus-terminal/src/frontends/htermFrontend.ts b/terminus-terminal/src/frontends/htermFrontend.ts index 77b4faf3..a57b2ef1 100644 --- a/terminus-terminal/src/frontends/htermFrontend.ts +++ b/terminus-terminal/src/frontends/htermFrontend.ts @@ -236,11 +236,10 @@ export class HTermFrontend extends Frontend { return size } - const onCursorBlink_ = this.term.onCursorBlink_.bind(this.term) - + const _onCursorBlink = this.term.onCursorBlink_.bind(this.term) this.term.onCursorBlink_ = () => { this.term.cursorNode_.style.opacity = '0' - onCursorBlink_() + _onCursorBlink() } } }