]> source.dussan.org Git - svg.js.git/commitdiff
Updated README
authorwout <wout@impinc.co.uk>
Wed, 30 Jul 2014 09:08:39 +0000 (11:08 +0200)
committerwout <wout@impinc.co.uk>
Wed, 30 Jul 2014 09:08:39 +0000 (11:08 +0200)
README.md

index d4f181a6a7e05f8393398459cc3c9887eef6a15d..7d72d7958e9b0e14253802e34dd99053d4ba5473 100755 (executable)
--- a/README.md
+++ b/README.md
@@ -1790,10 +1790,10 @@ __`returns`: `SVG.FX`__
 Say you want to control the position of an animation with an external event, then the `at()` method will proove very useful:
 
 ```javascript
-var animate = draw.rect(100, 100).move(50, 50).animate('=').move(200, 200)
+var animation = draw.rect(100, 100).move(50, 50).animate('=').move(200, 200)
 
 document.onmousemove = function(event) {
-  animate.at(event.clientX / 1000)
+  animation.at(event.clientX / 1000)
 }
 ```