Disables the "Focus connected" notification.

This commit is contained in:
George Politis 2014-12-11 13:01:23 +01:00
parent 451d16a664
commit a1624138fe
1 changed files with 2 additions and 1 deletions

3
app.js
View File

@ -769,7 +769,8 @@ $(document).bind('entered.muc', function (event, jid, info, pres) {
{ {
focusJid = jid; focusJid = jid;
console.info("Ignore focus: " + jid +", real JID: " + info.jid); console.info("Ignore focus: " + jid +", real JID: " + info.jid);
messageHandler.notify('Focus', 'connected', 'connected'); // We don't want this notification for the focus.
// messageHandler.notify('Focus', 'connected', 'connected');
return; return;
} }