diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-12-02 20:24:38 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-12-02 20:24:38 +0900 |
| commit | e264a49b081963b2839bd5035c9dce31716bac81 (patch) | |
| tree | 3558577da44fbfd176644b08cb565e4016f93441 /src/client | |
| parent | Merge branches 'develop', 'develop' and 'develop' of https://github.com/syuil... (diff) | |
| download | misskey-e264a49b081963b2839bd5035c9dce31716bac81.tar.gz misskey-e264a49b081963b2839bd5035c9dce31716bac81.tar.bz2 misskey-e264a49b081963b2839bd5035c9dce31716bac81.zip | |
[Client] Resolve #2596
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app/mobile/views/components/post-form.vue | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/client/app/mobile/views/components/post-form.vue b/src/client/app/mobile/views/components/post-form.vue index 868b235f9c..50fee826b0 100644 --- a/src/client/app/mobile/views/components/post-form.vue +++ b/src/client/app/mobile/views/components/post-form.vue @@ -219,6 +219,16 @@ export default Vue.extend({ (this.$refs.text as any).focus(); }, + addVisibleUser() { + this.$root.dialog({ + title: this.$t('enter-username'), + user: true + }).then(({ canceled, result: user }) => { + if (canceled) return; + this.visibleUsers.push(user); + }); + }, + chooseFile() { (this.$refs.file as any).click(); }, |