aboutsummaryrefslogtreecommitdiffstats
path: root/src/path.js
diff options
context:
space:
mode:
authorwout <wout@impinc.co.uk>2012-12-29 18:12:53 +0100
committerwout <wout@impinc.co.uk>2012-12-29 18:12:53 +0100
commit68367e494fcab754ae4833e64804a824032cf31c (patch)
treec9d5d9fe5995ccbbe819f29752c1133c7415882d /src/path.js
parent52ed3ba98715ed3c63e74ff29a9892972a7bec19 (diff)
downloadsvg.js-68367e494fcab754ae4833e64804a824032cf31c.tar.gz
svg.js-68367e494fcab754ae4833e64804a824032cf31c.zip
Code refactoring
Diffstat (limited to 'src/path.js')
-rw-r--r--src/path.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/path.js b/src/path.js
index fef5809..5b71e50 100644
--- a/src/path.js
+++ b/src/path.js
@@ -14,7 +14,7 @@ SVG.extend(SVG.Path, {
return this.attr('d', d || 'M0,0');
},
- // move path using translate
+ // move path using translate, path's don't take x and y
move: function(x, y) {
return this.transform({ x: x, y: y });
}