Browse Source

Fix a log message.

master
bgrozev 11 years ago
parent
commit
233f18cb78
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      app.js

+ 1
- 1
app.js View File

@@ -611,7 +611,7 @@ $(document).bind('joined.muc', function (event, jid, info) {
611 611
 $(document).bind('entered.muc', function (event, jid, info, pres) {
612 612
     console.log('entered', jid, info);
613 613
 
614
-    console.log('is focus?' + focus ? 'true' : 'false');
614
+    console.log('is focus? ' + (focus ? 'true' : 'false'));
615 615
 
616 616
     // Add Peer's container
617 617
     VideoLayout.ensurePeerContainerExists(jid);

Loading…
Cancel
Save