1
0
mirror of https://github.com/flarum/core.git synced 2025-07-20 16:21:18 +02:00

Add reply placeholder to bottom of post stream

This commit is contained in:
Toby Zerner
2015-06-01 10:28:24 +09:30
parent 3f6a3de863
commit 56981c1297
5 changed files with 42 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ import Composer from 'flarum/components/composer';
export default class ReplyComposer extends ComposerBody {
constructor(props) {
props.placeholder = props.placeholder || 'Write your reply...';
props.placeholder = props.placeholder || 'Write a Reply...';
props.submitLabel = props.submitLabel || 'Post Reply';
props.confirmExit = props.confirmExit || 'You have not posted your reply. Do you wish to discard it?';