summaryrefslogtreecommitdiff
path: root/src/web/app/mobile
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-01-14 12:15:00 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-01-14 12:15:00 +0900
commite9cfa3dafc30cefccd89be38c876b16699477f37 (patch)
tree63e6656469f172f25859f9fbd29c48cc67d3fd5a /src/web/app/mobile
parentRefactor (diff)
downloadmisskey-e9cfa3dafc30cefccd89be38c876b16699477f37.tar.gz
misskey-e9cfa3dafc30cefccd89be38c876b16699477f37.tar.bz2
misskey-e9cfa3dafc30cefccd89be38c876b16699477f37.zip
投稿の文字数制限を緩和
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 e2d0c96024..28e508ebc5 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 &gt; 300 }">{ 300 - refs.text.value.length }</span>
+ <div><span class="text-count { over: refs.text.value.length &gt; 500 }">{ 500 - refs.text.value.length }</span>
<button class="submit" onclick={ post }>投稿</button>
</div>
</div>