File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -353,20 +353,15 @@ export default {
353353 }
354354
355355 setTimeout (() => {
356- this .updateFooterList (' @' )
357- this .updateFooterList (' :' )
358- this .updateFooterList (' /' )
356+ this .updateFooterLists ()
359357 }, 60 )
360358 }),
361359 50
362360 )
363361
364362 this .getTextareaRef ().addEventListener (' click' , () => {
365363 if (isMobile) this .keepKeyboardOpen = true
366-
367- this .updateFooterList (' @' )
368- this .updateFooterList (' :' )
369- this .updateFooterList (' /' )
364+ this .updateFooterLists ()
370365 })
371366
372367 this .getTextareaRef ().addEventListener (' blur' , () => {
@@ -663,6 +658,11 @@ export default {
663658 this.messageReply = message
664659 this.focusTextarea()
665660 },
661+ updateFooterLists() {
662+ this.updateFooterList('@')
663+ this.updateFooterList(':')
664+ this.updateFooterList('/')
665+ },
666666 updateFooterList(tagChar) {
667667 if (!this.getTextareaRef()) return
668668
You can’t perform that action at this time.
0 commit comments