summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-12-02 20:24:38 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-12-02 20:24:38 +0900
commite264a49b081963b2839bd5035c9dce31716bac81 (patch)
tree3558577da44fbfd176644b08cb565e4016f93441 /src/client
parentMerge branches 'develop', 'develop' and 'develop' of https://github.com/syuil... (diff)
downloadmisskey-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.vue10
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();
},