]> source.dussan.org Git - svg.js.git/commitdiff
Updated README
authorwout <wout@impinc.co.uk>
Wed, 6 Mar 2013 11:46:08 +0000 (11:46 +0000)
committerwout <wout@impinc.co.uk>
Wed, 6 Mar 2013 11:46:08 +0000 (11:46 +0000)
README.md

index 0d57c54f02813b0be929917c98b9d0066f8b5d50..861ec8097ebefd8bb6ac3dcaad1c072c4c33bf4f 100644 (file)
--- a/README.md
+++ b/README.md
@@ -430,13 +430,13 @@ var ellipse = draw.ellipse(100, 100).attr('cx', '20%').fill('#333')
 
 rect.animate(3000).move(100, 100).during(function(pos, morph) {
   /* numeric values */
-  circle.size(morph(100, 200), morph(100, 50))
+  ellipse.size(morph(100, 200), morph(100, 50))
   
   /* unit strings */
-  circle.attr('cx', morph('20%', '80%'))
+  ellipse.attr('cx', morph('20%', '80%'))
   
   /* hex color strings */
-  circle.fill(morph('#333', '#ff0066'))
+  ellipse.fill(morph('#333', '#ff0066'))
 })
 ```