aboutsummaryrefslogtreecommitdiff
path: root/src/components/emoji-input/emoji-input.js
diff options
context:
space:
mode:
authorjared <jaredrmain@gmail.com>2019-04-08 12:02:50 -0400
committerjared <jaredrmain@gmail.com>2019-04-08 12:02:50 -0400
commit885f4c9924aa0372d8949666078c3630a38333ae (patch)
tree18d91e05d33787e64f256e79921c33d9fbbe34fc /src/components/emoji-input/emoji-input.js
parent2ab915b48680b3c176a201700b2dd7e859329b05 (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.js1
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(() => {