diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-11-05 20:52:55 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-05 20:52:55 +0900 |
| commit | 0047920c1a1f2784eb02fec8f5b0c110c2dcb1fa (patch) | |
| tree | 65c8bdd82f1ffd937ed557b3cdbf733d1f7beeff /src/client/app/common/views/directives | |
| parent | Fix bug (diff) | |
| parent | Better emoji regexp (diff) | |
| download | misskey-0047920c1a1f2784eb02fec8f5b0c110c2dcb1fa.tar.gz misskey-0047920c1a1f2784eb02fec8f5b0c110c2dcb1fa.tar.bz2 misskey-0047920c1a1f2784eb02fec8f5b0c110c2dcb1fa.zip | |
Merge pull request #3117 from syuilo/twemoji
Use Twemoji
Diffstat (limited to 'src/client/app/common/views/directives')
| -rw-r--r-- | src/client/app/common/views/directives/autocomplete.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/app/common/views/directives/autocomplete.ts b/src/client/app/common/views/directives/autocomplete.ts index e3016f0b7b..ca0c792121 100644 --- a/src/client/app/common/views/directives/autocomplete.ts +++ b/src/client/app/common/views/directives/autocomplete.ts @@ -145,6 +145,7 @@ class Autocomplete { } else { // サジェスト要素作成 this.suggestion = new MkAutocomplete({ + parent: this.vm, propsData: { textarea: this.textarea, complete: this.complete, |