diff options
| author | Henry Jameson <me@hjkos.com> | 2019-09-08 15:51:17 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2019-09-08 15:51:17 +0300 |
| commit | 14df84d89bfc58f564697b7d72d7c66134c64697 (patch) | |
| tree | 88a93658d3fcb9c80a28c54f6dcdf57ae00a0ae9 /src/components/post_status_form | |
| parent | db086fe1fdeefdc904f51ee00b2710f089996599 (diff) | |
fixed some bugs, added spam mode, minor collateral fixes
Diffstat (limited to 'src/components/post_status_form')
| -rw-r--r-- | src/components/post_status_form/post_status_form.js | 2 | ||||
| -rw-r--r-- | src/components/post_status_form/post_status_form.vue | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js index 1359e75a..d468be76 100644 --- a/src/components/post_status_form/post_status_form.js +++ b/src/components/post_status_form/post_status_form.js @@ -282,7 +282,7 @@ const PostStatusForm = { target.style.height = null } }, - showEmoji () { + showEmojiPicker () { this.$refs['textarea'].focus() this.$refs['emoji-input'].triggerShowPicker() }, diff --git a/src/components/post_status_form/post_status_form.vue b/src/components/post_status_form/post_status_form.vue index ad2c2218..026cb8fe 100644 --- a/src/components/post_status_form/post_status_form.vue +++ b/src/components/post_status_form/post_status_form.vue @@ -170,7 +170,7 @@ <i :title="$t('emoji.add_emoji')" class="icon-smile btn btn-default" - @click.stop.prevent="showEmoji" + @click="showEmojiPicker" /> </div> <div |
