Avoid useless layout on blur

This commit is contained in:
Ian Gulliver
2019-07-03 18:38:08 +00:00
parent b4316a1eb5
commit 0f73c595f4

View File

@@ -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_);
}