Merge pull request #804 from ZogStriP/fix-when-topic-is-closed-you-can-still-invite-someone-to-reply
FIX: when topic is closed, you can still invite someone to reply
This commit is contained in:
commit
d6feb8f37f
|
@ -24,9 +24,14 @@ Discourse.TopicFooterButtonsView = Ember.ContainerView.extend({
|
||||||
|
|
||||||
// We hide some controls from private messages
|
// We hide some controls from private messages
|
||||||
if (this.get('topic.can_invite_to')) {
|
if (this.get('topic.can_invite_to')) {
|
||||||
this.addObject(Discourse.ButtonView.create({
|
this.addObject(Discourse.ButtonView.createWithMixins({
|
||||||
textKey: 'topic.invite_reply.title',
|
textKey: 'topic.invite_reply.title',
|
||||||
helpKey: 'topic.invite_reply.help',
|
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) {
|
renderIcon: function(buffer) {
|
||||||
buffer.push("<i class='icon icon-group'></i>");
|
buffer.push("<i class='icon icon-group'></i>");
|
||||||
|
|
Loading…
Reference in New Issue