diff options
| author | jared <jaredrmain@gmail.com> | 2019-04-08 12:02:50 -0400 |
|---|---|---|
| committer | jared <jaredrmain@gmail.com> | 2019-04-08 12:02:50 -0400 |
| commit | 885f4c9924aa0372d8949666078c3630a38333ae (patch) | |
| tree | 18d91e05d33787e64f256e79921c33d9fbbe34fc /src/components/emoji-input/emoji-input.js | |
| parent | 2ab915b48680b3c176a201700b2dd7e859329b05 (diff) | |
#101 - bind outside click, add emoji to post status form
Diffstat (limited to 'src/components/emoji-input/emoji-input.js')
| -rw-r--r-- | src/components/emoji-input/emoji-input.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/components/emoji-input/emoji-input.js b/src/components/emoji-input/emoji-input.js index 99dba1cb..112fd148 100644 --- a/src/components/emoji-input/emoji-input.js +++ b/src/components/emoji-input/emoji-input.js @@ -108,7 +108,6 @@ const EmojiInput = { }, onEmoji (emoji) { const newValue = this.value.substr(0, this.caret) + emoji + this.value.substr(this.caret) - this.$refs.input.focus() this.$emit('input', newValue) this.caret += emoji.length setTimeout(() => { |
