Fix a log message.

This commit is contained in:
bgrozev 2014-09-11 11:48:55 +03:00
parent 312b7db6a0
commit 233f18cb78
1 changed files with 1 additions and 1 deletions

2
app.js
View File

@ -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);