diff options
author | Thomas Park <thomas@thomaspark.me> | 2012-08-22 17:41:55 -0400 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.me> | 2012-08-22 17:41:55 -0400 |
commit | df05a69a604100345d1822bbf98cf8f2a279b229 (patch) | |
tree | 36c34c30fc8ee47598d78731f6ab34445100982c | |
parent | bc502cf224ca9c31f917f467dd583a815f44525f (diff) |
index: reduce news items to 3
-rw-r--r-- | index.html | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -518,7 +518,7 @@ parseRSS('http://feeds.feedburner.com/bootswatch', function(d){ var h ='<strong>Recent updates:</strong> '; - for (var i = 0; i < 4; i++){ + for (var i = 0; i < 3; i++){ h = h + '<a href="' + d.entries[i].link + '">' + d.entries[i].title + '...</a> '; } document.getElementById('ticker').innerHTML = h; |