Browse Source

fixing undefined twisterFollowingO issue in guest mode

master
erqan 11 years ago
parent
commit
114cc7866e
  1. 3
      js/twister_following.js

3
js/twister_following.js

@ -441,6 +441,9 @@ function fillWhoFollows(list, item, offset, size) { @@ -441,6 +441,9 @@ function fillWhoFollows(list, item, offset, size) {
}
function getWhoFollows(username, item) {
if (!defaultScreenName || typeof(defaultScreenName) === 'undefined')
return;
var list = whoFollows(username);
fillWhoFollows(list, item, 0, (list.length > 5 ? 5 : list.length));

Loading…
Cancel
Save