Fix a log message.
This commit is contained in:
parent
312b7db6a0
commit
233f18cb78
2
app.js
2
app.js
|
@ -611,7 +611,7 @@ $(document).bind('joined.muc', function (event, jid, info) {
|
||||||
$(document).bind('entered.muc', function (event, jid, info, pres) {
|
$(document).bind('entered.muc', function (event, jid, info, pres) {
|
||||||
console.log('entered', jid, info);
|
console.log('entered', jid, info);
|
||||||
|
|
||||||
console.log('is focus?' + focus ? 'true' : 'false');
|
console.log('is focus? ' + (focus ? 'true' : 'false'));
|
||||||
|
|
||||||
// Add Peer's container
|
// Add Peer's container
|
||||||
VideoLayout.ensurePeerContainerExists(jid);
|
VideoLayout.ensurePeerContainerExists(jid);
|
||||||
|
|
Loading…
Reference in New Issue