Skip to content

Instantly share code, notes, and snippets.

@embedly
Created May 5, 2010 19:33
Show Gist options
  • Save embedly/391309 to your computer and use it in GitHub Desktop.
Save embedly/391309 to your computer and use it in GitHub Desktop.
function homeTimeline(){
$('div#tweets OL').html('');
twttr.anywhere(function (T) {
T.currentUser.homeTimeline().first(10).each(function(status) {
createStatus(status);
T("LI#status_"+status.id).hovercards();
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment