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

View file

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