From 233f18cb789ad7d8f965e82578e7794b0a5a205c Mon Sep 17 00:00:00 2001 From: bgrozev Date: Thu, 11 Sep 2014 11:48:55 +0300 Subject: [PATCH] Fix a log message. --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index e0ab84592..b78228627 100644 --- a/app.js +++ b/app.js @@ -611,7 +611,7 @@ $(document).bind('joined.muc', function (event, jid, info) { $(document).bind('entered.muc', function (event, jid, info, pres) { console.log('entered', jid, info); - console.log('is focus?' + focus ? 'true' : 'false'); + console.log('is focus? ' + (focus ? 'true' : 'false')); // Add Peer's container VideoLayout.ensurePeerContainerExists(jid);