added buffer for mentions in twitter stream

This commit is contained in:
Brandon Mathis 2011-09-28 00:53:31 -05:00
parent 9730e241b1
commit 9cf956cc96
1 changed files with 3 additions and 4 deletions

View File

@ -49,7 +49,6 @@ function linkifyTweet(text, url) {
if(url[u].expanded_url != null){ if(url[u].expanded_url != null){
var shortUrl = new RegExp( url[u].url.replace(/https?:\/\//, ''), 'g'); var shortUrl = new RegExp( url[u].url.replace(/https?:\/\//, ''), 'g');
text = text.replace(shortUrl, url[u].display_url); text = text.replace(shortUrl, url[u].display_url);
console.log(text);
} }
} }
return text return text
@ -66,11 +65,11 @@ function showTwitterFeed(tweets, twitter_user) {
} }
function getTwitterFeed(user, count, replies) { function getTwitterFeed(user, count, replies) {
count = parseInt(count, 10);
$.ajax({ $.ajax({
url: "http://api.twitter.com/1/statuses/user_timeline/" + user + ".json?trim_user=true&count=" + (parseInt(count, 10)) + "&include_entities=1&exclude_replies=" + (replies ? "0" : "1") + "&callback=?" url: "http://api.twitter.com/1/statuses/user_timeline/" + user + ".json?trim_user=true&count=" + (count + 20) + "&include_entities=1&exclude_replies=" + (replies ? "0" : "1") + "&callback=?"
, type: 'jsonp' , type: 'jsonp'
, error: function (err) { $('#tweets li.loading').addClass('error').text("Twitter's busted"); } , error: function (err) { $('#tweets li.loading').addClass('error').text("Twitter's busted"); }
, success: function(data) { showTwitterFeed(data, user); } , success: function(data) { showTwitterFeed(data.slice(0, count), user); }
}) })
} }