From 0f73c595f4a58afacf217987003cd6a9b3abfd54 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Wed, 3 Jul 2019 18:38:08 +0000 Subject: [PATCH] Avoid useless layout on blur --- EditorNode.js | 1 - 1 file changed, 1 deletion(-) diff --git a/EditorNode.js b/EditorNode.js index aa64273..4925f08 100644 --- a/EditorNode.js +++ b/EditorNode.js @@ -10,7 +10,6 @@ class EditorNode extends EditorEntryBase { this.input_.placeholder = 'node name'; this.listen(this.input_, 'keydown', (e) => this.onInputKeyDown(e)); this.listen(this.input_, 'input', (e) => this.onInput()); - this.listen(this.input_, 'blur', (e) => this.onInput()); this.elem_.appendChild(this.input_); }