From 64fadd1e184b104959d6681e61da031f7bd1b832 Mon Sep 17 00:00:00 2001 From: wout Date: Wed, 9 Jan 2013 18:24:50 +0100 Subject: Updated README --- src/fx.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/fx.js b/src/fx.js index 6e6fc00..7eb939a 100644 --- a/src/fx.js +++ b/src/fx.js @@ -19,6 +19,7 @@ SVG.extend(SVG.FX, { /* start animation */ this.interval = setInterval(function(){ + // This code was borrowed from the emile.js micro framework by Thomas Fuchs, aka MadRobby. var index, time = (new Date).getTime(), pos = time > finish ? 1 : (time - start) / duration; @@ -236,4 +237,3 @@ SVG.extend(SVG.Element, { // rect.animate(1500, '>').move(200, 300).after(function() { // this.fill({ color: '#f06' }); // }); - -- cgit v1.2.3