add maxNewsItems config

Added extra config parameter to limit the amount of news items this module cycles through.
This commit is contained in:
Maarten Schroeven
2016-06-06 00:16:49 +02:00
parent bc17ef896e
commit 0d94ef10ce

View File

@@ -24,6 +24,7 @@ Module.register("newsfeed",{
reloadInterval: 5 * 60 * 1000, // every 5 minutes
updateInterval: 10 * 1000,
animationSpeed: 2.5 * 1000,
maxNewsItems: 0 // 0 for unlimited
},
// Define required scripts.
@@ -151,7 +152,9 @@ Module.register("newsfeed",{
var dateB = new Date(b.pubdate);
return dateB - dateA;
});
if(this.config.maxNewsItems > 0) {
newsItems = newsItems.slice(0, this.config.maxNewsItems);
}
this.newsItems = newsItems;
},