mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 19:38:24 +00:00
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…
x
Reference in New Issue
Block a user