Merge pull request #1849 from vikhyat/fix-pm-invite

Fix inviting others to private messages.
This commit is contained in:
Robin Ward 2014-01-21 07:05:15 -08:00
commit 1fe95f044a

View File

@ -15,7 +15,6 @@ Discourse.PrivateMessageMapComponent = Ember.View.extend({
init: function() {
this._super();
this.set('context', this);
this.set('controller', this);
},
actions: {
@ -34,7 +33,7 @@ Discourse.PrivateMessageMapComponent = Ember.View.extend({
},
showPrivateInvite: function() {
this.sendAction('showPrivateInviteAction');
this.get('controller').send('showPrivateInviteAction');
}
}