Fix inviting others to private messages.

This commit is contained in:
Vikhyat Korrapati 2014-01-21 11:55:45 +05:30
parent 9be481f035
commit 7a45d261a7
1 changed files with 1 additions and 2 deletions

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');
}
}