js: start liveupdate after ping returns to stop continuos welcome message

As liveupdate start before ping but returns after, it overwrite session
edit by ping, restoring already shown and deleted notices and infos
This commit is contained in:
Fabio Comuni 2011-11-11 17:00:05 +01:00
parent 20217c04f0
commit 25b972bee2

View file

@ -168,6 +168,15 @@
function NavUpdate() { function NavUpdate() {
if(! stopped) {
$.get("ping",function(data) {
$(data).find('result').each(function() {
// send nav-update event
$('nav').trigger('nav-update', this);
// start live update
if($('#live-network').length) { src = 'network'; liveUpdate(); } if($('#live-network').length) { src = 'network'; liveUpdate(); }
if($('#live-profile').length) { src = 'profile'; liveUpdate(); } if($('#live-profile').length) { src = 'profile'; liveUpdate(); }
if($('#live-community').length) { src = 'community'; liveUpdate(); } if($('#live-community').length) { src = 'community'; liveUpdate(); }
@ -185,11 +194,9 @@
} }
} }
if(! stopped) {
$.get("ping",function(data) {
$(data).find('result').each(function() {
// send nav-update event
$('nav').trigger('nav-update', this);
}); });
}) ; }) ;
} }