diff options
| author | Henry Jameson <me@hjkos.com> | 2022-10-10 20:11:04 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-10-10 20:11:04 +0300 |
| commit | 692342a77f1b91a88a30aadfd20994c293ad65e0 (patch) | |
| tree | 448f983b3b0d9f445ac6c55191e657fe04671909 /src/components/emoji_input | |
| parent | d2fabe1a71207f92e10283fc5a881d883cb52ae1 (diff) | |
focus search input when opening emoji picker
Diffstat (limited to 'src/components/emoji_input')
| -rw-r--r-- | src/components/emoji_input/emoji_input.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/components/emoji_input/emoji_input.js b/src/components/emoji_input/emoji_input.js index eb64e054..92c10f09 100644 --- a/src/components/emoji_input/emoji_input.js +++ b/src/components/emoji_input/emoji_input.js @@ -278,17 +278,10 @@ const EmojiInput = { } }, methods: { - focusPickerInput () { - const pickerEl = this.$refs.picker.$el - if (!pickerEl) return - const pickerInput = pickerEl.querySelector('input') - if (pickerInput) pickerInput.focus() - }, triggerShowPicker () { this.$nextTick(() => { this.$refs.picker.showPicker() this.scrollIntoView() - this.focusPickerInput() }) // This temporarily disables "click outside" handler // since external trigger also means click originates @@ -306,7 +299,6 @@ const EmojiInput = { this.scrollIntoView() this.$refs.picker.showPicker() this.$refs.picker.startEmojiLoad() - this.$nextTick(this.focusPickerInput) } else { this.$refs.picker.hidePicker() } |
