diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-02-09 22:58:49 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-02-09 22:58:49 +0900 |
| commit | 427dd7af18051020ea5fb6cc2fc26dac70d14a7e (patch) | |
| tree | 9dbc8fb3ec2fbb521a9abf0dfc51c334b482dfa5 /src/web/app/desktop | |
| parent | [Client] Fix bug (diff) | |
| download | misskey-427dd7af18051020ea5fb6cc2fc26dac70d14a7e.tar.gz misskey-427dd7af18051020ea5fb6cc2fc26dac70d14a7e.tar.bz2 misskey-427dd7af18051020ea5fb6cc2fc26dac70d14a7e.zip | |
1000文字まで受け付けるように
Diffstat (limited to 'src/web/app/desktop')
| -rw-r--r-- | src/web/app/desktop/tags/post-form.tag | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/app/desktop/tags/post-form.tag b/src/web/app/desktop/tags/post-form.tag index cc9764e6f6..872e928816 100644 --- a/src/web/app/desktop/tags/post-form.tag +++ b/src/web/app/desktop/tags/post-form.tag @@ -13,7 +13,7 @@ <button ref="upload" title="PCからファイルを添付" onclick={ selectFile }><i class="fa fa-upload"></i></button> <button ref="drive" title="ドライブからファイルを添付" onclick={ selectFileFromDrive }><i class="fa fa-cloud"></i></button> <button class="cat" title="Insert The Cat" onclick={ cat }><i class="fa fa-smile-o"></i></button> - <p class="text-count { over: refs.text.value.length > 500 }">のこり{ 500 - refs.text.value.length }文字</p> + <p class="text-count { over: refs.text.value.length > 1000 }">のこり{ 1000 - refs.text.value.length }文字</p> <button class={ wait: wait } ref="submit" disabled={ wait || (refs.text.value.length == 0 && files.length == 0) } onclick={ post }>{ wait ? '投稿中' : opts.reply ? '返信' : '投稿' } <mk-ellipsis if={ wait }></mk-ellipsis> </button> |