Add span.btn-text around 'Reply' text in the post menu

This commit is contained in:
Neil Lalonde 2013-09-02 15:55:35 -04:00
parent 82bc6b677f
commit 1fa6144067
1 changed files with 2 additions and 2 deletions

View File

@ -175,8 +175,8 @@ Discourse.PostMenuView = Discourse.View.extend({
if (!this.get('controller.model.details.can_create_post')) return;
buffer.push("<button title=\"" +
(I18n.t("post.controls.reply")) +
"\" class='create' data-action=\"reply\"><i class='icon-reply'></i>" +
(I18n.t("topic.reply.title")) + "</button>");
"\" class='create' data-action=\"reply\"><i class='icon-reply'></i><span class='btn-text'>" +
(I18n.t("topic.reply.title")) + "</span></button>");
},
clickReply: function() {