Setting windowhasfocus to true by default

This commit is contained in:
Sarven Capadisli 2009-11-18 12:46:36 +00:00
parent 0ae7a1df6e
commit 007418fdab

View File

@ -35,7 +35,7 @@ RealtimeUpdate = {
_deleteurl: '', _deleteurl: '',
_updatecounter: 0, _updatecounter: 0,
_maxnotices: 50, _maxnotices: 50,
_windowhasfocus: false, _windowhasfocus: true,
init: function(userid, replyurl, favorurl, deleteurl) init: function(userid, replyurl, favorurl, deleteurl)
{ {
@ -48,7 +48,7 @@ RealtimeUpdate = {
$(window).bind('focus', function(){ RealtimeUpdate._windowhasfocus = true; }); $(window).bind('focus', function(){ RealtimeUpdate._windowhasfocus = true; });
$(window).blur(function() { $(window).bind('blur', function() {
$('#notices_primary .notice').removeClass('mark-top'); $('#notices_primary .notice').removeClass('mark-top');
$('#notices_primary .notice:first').addClass('mark-top'); $('#notices_primary .notice:first').addClass('mark-top');