mirror of
https://github.com/twisterarmy/twister-calm.git
synced 2025-01-12 07:58:05 +00:00
update followers counter every 10 minutes
This commit is contained in:
parent
d75cf96f25
commit
395e04906c
@ -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()
|
||||
});
|
||||
}
|
||||
|
||||
function updateFollowers()
|
||||
{
|
||||
getFollowers( defaultScreenName, $(".mini-profile .followers-count") );
|
||||
// update followers every 10 minutes
|
||||
setTimeout(updateFollowers, 10*60*1000);
|
||||
}
|
||||
|
||||
function updateFollowSuggestion()
|
||||
{
|
||||
$('.follow-suggestions').empty();
|
||||
|
Loading…
Reference in New Issue
Block a user