Hmm inside the .js file, try changing the line:
Code:
for (var i=0; i<feeds.length; i++){
to:
Code:
for (var i=1; i<2; i++){
In your invocation code on your HTML page itself, you should also make sure filterfeed(), if invoked, is set to just 1:
Code:
feedinstance.displayoptions("label datetime snippet") //show the specified additional fields
feedinstance.setentrycontainer("div") //Display each entry as a DIV
feedinstance.filterfeed(1) //Show 1 entries, sort by label
feedinstance.init() //Always call this last
Bookmarks