BUGFIX: js error in composer
This commit is contained in:
parent
c4fa75918b
commit
b015db647b
|
@ -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 New Issue