Unfocus chat input when pressing escape

This commit is contained in:
Pavel Djundik 2020-01-24 11:35:04 +02:00
parent 2451f222e8
commit bbe6b34371

View file

@ -101,6 +101,8 @@ export default {
},
},
mounted() {
this.$root.$on("escapekey", this.blurInput);
if (this.$store.state.settings.autocomplete) {
autocompletionRef = autocompletion(this.$refs.input);
}
@ -161,6 +163,8 @@ export default {
}
},
destroyed() {
this.$root.$off("escapekey", this.blurInput);
if (autocompletionRef) {
autocompletionRef.destroy();
autocompletionRef = null;
@ -255,6 +259,9 @@ export default {
openFileUpload() {
this.$refs.uploadInput.click();
},
blurInput() {
this.$refs.input.blur();
},
},
};
</script>