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

Tweak reply placeholder appearance

This commit is contained in:
Toby Zerner
2015-06-01 17:54:37 +09:30
parent ccf63a65e9
commit 2900cac456
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...'),
]);
}