summaryrefslogtreecommitdiff
path: root/src/web/app/mobile
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-02-09 22:58:49 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-02-09 22:58:49 +0900
commit427dd7af18051020ea5fb6cc2fc26dac70d14a7e (patch)
tree9dbc8fb3ec2fbb521a9abf0dfc51c334b482dfa5 /src/web/app/mobile
parent[Client] Fix bug (diff)
downloadmisskey-427dd7af18051020ea5fb6cc2fc26dac70d14a7e.tar.gz
misskey-427dd7af18051020ea5fb6cc2fc26dac70d14a7e.tar.bz2
misskey-427dd7af18051020ea5fb6cc2fc26dac70d14a7e.zip
1000文字まで受け付けるように
Diffstat (limited to 'src/web/app/mobile')
-rw-r--r--src/web/app/mobile/tags/post-form.tag2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/app/mobile/tags/post-form.tag b/src/web/app/mobile/tags/post-form.tag
index 312046363c..900f742e85 100644
--- a/src/web/app/mobile/tags/post-form.tag
+++ b/src/web/app/mobile/tags/post-form.tag
@@ -2,7 +2,7 @@
<header>
<div>
<button class="cancel" onclick={ cancel }><i class="fa fa-times"></i></button>
- <div><span class="text-count { over: refs.text.value.length > 500 }">{ 500 - refs.text.value.length }</span>
+ <div><span class="text-count { over: refs.text.value.length > 1000 }">{ 1000 - refs.text.value.length }</span>
<button class="submit" onclick={ post }>投稿</button>
</div>
</div>