From b6e5bf63c773efe71c841e430755063394ac8521 Mon Sep 17 00:00:00 2001 From: Marc Bachmann Date: Tue, 19 Jul 2016 01:58:50 +0200 Subject: [PATCH] Remove unused state variable (#268) --- app/lib/components/term.js | 1 - 1 file changed, 1 deletion(-) diff --git a/app/lib/components/term.js b/app/lib/components/term.js index 32fa018e..34e144de 100644 --- a/app/lib/components/term.js +++ b/app/lib/components/term.js @@ -7,7 +7,6 @@ export default class Term extends Component { constructor (props) { super(props); - this.state = { scrollable: false }; this.onWheel = this.onWheel.bind(this); this.onScrollEnter = this.onScrollEnter.bind(this); this.onScrollLeave = this.onScrollLeave.bind(this);