1
0
mirror of https://github.com/flarum/core.git synced 2025-08-04 15:37:51 +02:00

Tweak reply placeholder appearance

This commit is contained in:
Toby Zerner
2015-06-01 17:54:37 +09:30
parent 5d28fc2713
commit 8638e9c9ca
2 changed files with 15 additions and 9 deletions

View File

@@ -3,7 +3,7 @@ import avatar from 'flarum/helpers/avatar';
export default class ReplyPlaceholder extends Component {
view() {
return m('article.post.reply-post', {onclick: () => this.props.discussion.replyAction(true)}, [
return m('article.post.reply-post', {onmousedown: () => this.props.discussion.replyAction(true)}, [
m('header.post-header', avatar(app.session.user()), 'Write a Reply...'),
]);
}