summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.me>2012-08-22 17:41:55 -0400
committerThomas Park <thomas@thomaspark.me>2012-08-22 17:41:55 -0400
commitdf05a69a604100345d1822bbf98cf8f2a279b229 (patch)
tree36c34c30fc8ee47598d78731f6ab34445100982c /index.html
parentbc502cf224ca9c31f917f467dd583a815f44525f (diff)
index: reduce news items to 3
Diffstat (limited to 'index.html')
-rw-r--r--index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.html b/index.html
index 6fff64cd..0314d9c4 100644
--- a/index.html
+++ b/index.html
@@ -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>&nbsp;&nbsp;';
}
document.getElementById('ticker').innerHTML = h;