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 {
353
353
}
354
354
355
355
setTimeout (() => {
356
- this .updateFooterList (' @' )
357
- this .updateFooterList (' :' )
358
- this .updateFooterList (' /' )
356
+ this .updateFooterLists ()
359
357
}, 60 )
360
358
}),
361
359
50
362
360
)
363
361
364
362
this .getTextareaRef ().addEventListener (' click' , () => {
365
363
if (isMobile) this .keepKeyboardOpen = true
366
-
367
- this .updateFooterList (' @' )
368
- this .updateFooterList (' :' )
369
- this .updateFooterList (' /' )
364
+ this .updateFooterLists ()
370
365
})
371
366
372
367
this .getTextareaRef ().addEventListener (' blur' , () => {
@@ -663,6 +658,11 @@ export default {
663
658
this.messageReply = message
664
659
this.focusTextarea()
665
660
},
661
+ updateFooterLists() {
662
+ this.updateFooterList('@')
663
+ this.updateFooterList(':')
664
+ this.updateFooterList('/')
665
+ },
666
666
updateFooterList(tagChar) {
667
667
if (!this.getTextareaRef()) return
668
668
You can’t perform that action at this time.
0 commit comments