mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-26 13:59:23 +00:00
Improved intervals
This commit is contained in:
parent
496f8f0041
commit
882781e216
@ -61,12 +61,15 @@ ComunicWeb.components.friends.bar = {
|
|||||||
//Refresh friends list
|
//Refresh friends list
|
||||||
this.refresh(listFriendsElem);
|
this.refresh(listFriendsElem);
|
||||||
|
|
||||||
//Make the friend bar automaticaly refreshed (if the interval wasn't already defined)
|
//Remove previously existing interval
|
||||||
if(!this.refreshInterval)
|
if(this.refreshInterval)
|
||||||
|
clearInterval(this.refreshInterval);
|
||||||
|
|
||||||
|
//Make the friend bar automaticaly refreshed
|
||||||
this.refreshInterval = setInterval(function(){
|
this.refreshInterval = setInterval(function(){
|
||||||
if(byId("friendsList"))
|
if(byId("friendsList"))
|
||||||
ComunicWeb.components.friends.bar.refresh(listFriendsElem);
|
ComunicWeb.components.friends.bar.refresh(listFriendsElem);
|
||||||
}, 1000);
|
}, 15000);
|
||||||
|
|
||||||
//Success
|
//Success
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user