FIX: when topic is closed, you can still invite someone to reply

This commit is contained in:
Régis Hanol 2013-05-02 02:22:31 +02:00
parent 3bf3b130cc
commit f71f7d166c
1 changed files with 6 additions and 1 deletions

View File

@ -24,9 +24,14 @@ Discourse.TopicFooterButtonsView = Ember.ContainerView.extend({
// We hide some controls from private messages
if (this.get('topic.can_invite_to')) {
this.addObject(Discourse.ButtonView.create({
this.addObject(Discourse.ButtonView.createWithMixins({
textKey: 'topic.invite_reply.title',
helpKey: 'topic.invite_reply.help',
attributeBindings: ['disabled'],
disabled: function(){
return this.get('controller.content.archived') || this.get('controller.content.closed');
}.property('controller.content.archived', 'controller.content.closed'),
renderIcon: function(buffer) {
buffer.push("<i class='icon icon-group'></i>");