Changed the number of tweets stored in local memory
This commit is contained in:
@@ -83,7 +83,8 @@ block.fn.tweets = function(config) {
|
||||
tweets = window.sessionStorage.getItem('tweets');
|
||||
tweets = JSON.parse(tweets);
|
||||
tweets.push(tweet);
|
||||
if(tweets.length >= options.memory) {
|
||||
var localMemory = 100;
|
||||
if(tweets.length >= localMemory) {
|
||||
tweets.shift();
|
||||
}
|
||||
window.sessionStorage.setItem('tweets', JSON.stringify(tweets));
|
||||
|
||||
Reference in New Issue
Block a user