JC Brand
10 years ago
1 changed files with
2 additions and
2 deletions
-
2
2
converse.js
|
@@ -5079,7 +5079,7 @@
|
|
|
$(item).attr('jid'),
|
|
|
null,
|
|
|
this.onInfo.bind(this));
|
|
|
- }(this));
|
|
|
+ }.bind(this));
|
|
|
},
|
|
|
|
|
|
onInfo: function (stanza) {
|
|
@@ -5096,7 +5096,7 @@
|
|
|
'var': namespace,
|
|
|
'from': $stanza.attr('from')
|
|
|
});
|
|
|
- }(this));
|
|
|
+ }.bind(this));
|
|
|
}
|
|
|
});
|
|
|
|