1
0
mirror of https://github.com/moparisthebest/kaiwa synced 2024-08-13 17:03:51 -04:00

Set focus correctly the other way.

This commit is contained in:
Lance Stout 2013-09-17 11:22:42 -07:00
parent 4849929f83
commit 6052aca7b2
2 changed files with 4 additions and 4 deletions

View File

@ -24,12 +24,12 @@ module.exports = {
window.location = '/login';
}
app.hasFocus = false;
me.hasFocus = false;
$(window).blur(function () {
app.hasFocus = false;
me.hasFocus = false;
});
$(window).focus(function () {
app.hasFocus = true;
me.hasFocus = true;
});
window.onbeforeunload = function () {
if (client.sessionStarted) {

View File

@ -159,7 +159,7 @@ module.exports = HumanModel.define({
addMessage: function (message, notify) {
message.owner = me.jid.bare;
if (notify && (!this.activeContact || (this.activeContact && !app.hasFocus)) && message.from.bare === this.jid) {
if (notify && (!this.activeContact || (this.activeContact && !me.hasFocus)) && message.from.bare === this.jid) {
this.unreadCount++;
app.notifier.show({
title: this.displayName,