From 2a9355855fa75c9b3a00b3455ba7d4ed1b8d6b58 Mon Sep 17 00:00:00 2001 From: Olivier Hachette Date: Fri, 20 Feb 2015 17:14:18 +0100 Subject: [PATCH] Minor error on the example I also wanted to try a fork --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 3624523..537b80f 100644 --- a/index.html +++ b/index.html @@ -49,7 +49,7 @@ var timer; function startAnimation(n){ - for(var i=0; i<(5*n); i++) addDiv(); + for(var i=0; i<5; i++) addDiv(); timer = setInterval(moveContent,500); }