mirror of
https://github.com/discourse/discourse.git
synced 2025-02-19 15:02:55 +08:00
24 lines
626 B
JavaScript
24 lines
626 B
JavaScript
import ButtonView from 'discourse/views/button';
|
|
|
|
export default ButtonView.extend({
|
|
classNames: ['btn', 'btn-primary', 'create'],
|
|
helpKey: 'topic.reply.help',
|
|
|
|
text: function() {
|
|
var archetypeCapitalized = this.get('controller.content.archetype').capitalize();
|
|
var customTitle = this.get("parentView.replyButtonText" + archetypeCapitalized);
|
|
if (customTitle) { return customTitle; }
|
|
|
|
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');
|
|
}
|
|
});
|
|
|