投稿の文字数制限を緩和
This commit is contained in:
parent
e6c782c617
commit
e9cfa3dafc
|
@ -17,7 +17,7 @@ import event from '../../event';
|
|||
/**
|
||||
* 最大文字数
|
||||
*/
|
||||
const maxTextLength = 300;
|
||||
const maxTextLength = 500;
|
||||
|
||||
/**
|
||||
* 添付できるファイルの数
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
<mk-uploader ref="uploader"></mk-uploader>
|
||||
<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>
|
||||
<p class="text-count { over: refs.text.value.length > 300 }">のこり{ 300 - refs.text.value.length }文字</p>
|
||||
<p class="text-count { over: refs.text.value.length > 500 }">のこり{ 500 - 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>
|
||||
|
|
|
@ -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 > 300 }">{ 300 - refs.text.value.length }</span>
|
||||
<div><span class="text-count { over: refs.text.value.length > 500 }">{ 500 - refs.text.value.length }</span>
|
||||
<button class="submit" onclick={ post }>投稿</button>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue