|
|
|
@ -302,9 +302,6 @@ function showFollowingUsers(){
@@ -302,9 +302,6 @@ function showFollowingUsers(){
|
|
|
|
|
$followingList.append($template); |
|
|
|
|
|
|
|
|
|
for( var i = 0; i < followingUsers.length; i++ ) { |
|
|
|
|
if( followingUsers[i] == defaultScreenName ) |
|
|
|
|
continue; |
|
|
|
|
|
|
|
|
|
var resItem = $template.clone(true); |
|
|
|
|
resItem.removeAttr('id'); |
|
|
|
|
resItem.show(); |
|
|
|
@ -316,7 +313,10 @@ function showFollowingUsers(){
@@ -316,7 +313,10 @@ function showFollowingUsers(){
|
|
|
|
|
resItem.find(".public-following").prop("checked",isPublicFollowing(followingUsers[i])); |
|
|
|
|
getAvatar(followingUsers[i],resItem.find(".mini-profile-photo")); |
|
|
|
|
getFullname(followingUsers[i],resItem.find(".mini-profile-name")); |
|
|
|
|
|
|
|
|
|
if( followingUsers[i] == defaultScreenName ) { |
|
|
|
|
resItem.find("button").hide(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
resItem.appendTo($followingList); |
|
|
|
|
} |
|
|
|
|
$.MAL.followingListLoaded(); |
|
|
|
|