mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 09:36:19 -05:00
BUGFIX: js error in composer
This commit is contained in:
parent
c4fa75918b
commit
b015db647b
1 changed files with 6 additions and 1 deletions
|
@ -53,7 +53,12 @@ export default Ember.ArrayController.extend({
|
|||
@method typedReply
|
||||
**/
|
||||
typedReply() {
|
||||
this.get('queuedForTyping').forEach(msg => this.popup(msg));
|
||||
var self = this;
|
||||
this.get('queuedForTyping').forEach(function(msg){
|
||||
if(self.popup){
|
||||
this.popup(msg);
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue