UX: add reply glyph back to topic level reply button

This commit is contained in:
Jeff Atwood 2014-10-13 21:16:44 -07:00
parent 5569c45d3b
commit 825bd0d053
1 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,10 @@ export default ButtonView.extend({
return I18n.t("topic.reply.title");
}.property(),
renderIcon: function(buffer) {
buffer.push("<i class='fa fa-reply'></i>");
}
click: function() {
this.get('controller').send('replyToPost');
}