mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-12-24 08:28:50 -05:00
set twitter cookie to lastexpire in 30 minutes
This commit is contained in:
parent
6a4ccce18c
commit
a91019b919
@ -69,7 +69,7 @@ function prettyDate(time){
|
|||||||
function getTwitterStatus(twitter_name){
|
function getTwitterStatus(twitter_name){
|
||||||
var tweet_cookie = 'tweets_by_' + twitter_name + tweet_count;
|
var tweet_cookie = 'tweets_by_' + twitter_name + tweet_count;
|
||||||
$(twitter_container).set('html', 'Fetching tweets...');
|
$(twitter_container).set('html', 'Fetching tweets...');
|
||||||
if(!Cookie.read(tweet_cookie)) {
|
if(Cookie.read(tweet_cookie)) {
|
||||||
var myTwitterGitter = new TwitterGitter(twitter_name,{
|
var myTwitterGitter = new TwitterGitter(twitter_name,{
|
||||||
count: ((show_replies) ? tweet_count : 15 + tweet_count),
|
count: ((show_replies) ? tweet_count : 15 + tweet_count),
|
||||||
onComplete: function(tweets,user) {
|
onComplete: function(tweets,user) {
|
||||||
@ -80,7 +80,7 @@ function getTwitterStatus(twitter_name){
|
|||||||
the_tweets.push(tweet.text + key + tweet.created_at + key + tweet.id + key + tweet.source);
|
the_tweets.push(tweet.text + key + tweet.created_at + key + tweet.id + key + tweet.source);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
Cookie.write(tweet_cookie,the_tweets.join('^!^!^'), { duration: 1 });
|
Cookie.write(tweet_cookie,the_tweets.join('^!^!^'), { duration: 0.02 });
|
||||||
showTweets(the_tweets);
|
showTweets(the_tweets);
|
||||||
}
|
}
|
||||||
}).retrieve();
|
}).retrieve();
|
||||||
|
Loading…
Reference in New Issue
Block a user