mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-10-31 23:35:00 -04:00
Merge branch 'master' into site
This commit is contained in:
commit
9a82e42d34
@ -1,13 +1,15 @@
|
|||||||
// JSON-P Twitter fetcher for Octopress
|
// JSON-P Twitter fetcher for Octopress
|
||||||
// (c) Brandon Mathis // MIT Lisence
|
// (c) Brandon Mathis // MIT Lisence
|
||||||
function getTwitterFeed(user, count, replies) {
|
function getTwitterFeed(user, count, replies) {
|
||||||
feed = new jXHR();
|
var feed = new jXHR();
|
||||||
|
|
||||||
feed.onerror = function (msg,url) {
|
feed.onerror = function (msg,url) {
|
||||||
$('#tweets li.loading').addClass('error').text("Twitter's busted");
|
$('#tweets li.loading').addClass('error').text("Twitter's busted");
|
||||||
}
|
}
|
||||||
feed.onreadystatechange = function(data){
|
feed.onreadystatechange = function(data){
|
||||||
if (feed.readyState === 4) {
|
if (feed.readyState === 4) {
|
||||||
var tweets = new Array();
|
var tweets = new Array();
|
||||||
|
var i = 0;
|
||||||
for (i in data){
|
for (i in data){
|
||||||
if(tweets.length < count){
|
if(tweets.length < count){
|
||||||
if(replies || data[i].in_reply_to_user_id == null){
|
if(replies || data[i].in_reply_to_user_id == null){
|
||||||
|
Loading…
Reference in New Issue
Block a user