Browse Source

update followers counter every 10 minutes

master
Denis Ryabov 11 years ago
parent
commit
395e04906c
  1. 10
      js/interface_home.js

10
js/interface_home.js

@ -47,7 +47,8 @@ var InterfaceFunctions = function() @@ -47,7 +47,8 @@ var InterfaceFunctions = function()
getFullname( defaultScreenName, $miniProfile.find(".mini-profile-name") );
getAvatar( defaultScreenName, $miniProfile.find(".mini-profile-photo").find("img") );
getPostsCount( defaultScreenName, $miniProfile.find(".posts-count") );
getFollowers( defaultScreenName, $miniProfile.find(".followers-count") );
updateFollowers();
loadFollowing( function(args) {
$(".mini-profile .following-count").text(followingUsers.length-1);
@ -81,6 +82,13 @@ var InterfaceFunctions = function() @@ -81,6 +82,13 @@ var InterfaceFunctions = function()
});
}
function updateFollowers()
{
getFollowers( defaultScreenName, $(".mini-profile .followers-count") );
// update followers every 10 minutes
setTimeout(updateFollowers, 10*60*1000);
}
function updateFollowSuggestion()
{
$('.follow-suggestions').empty();

Loading…
Cancel
Save