summaryrefslogtreecommitdiffstats
path: root/src/transform.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/transform.js')
-rw-r--r--src/transform.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transform.js b/src/transform.js
index 6b40161..c769f53 100644
--- a/src/transform.js
+++ b/src/transform.js
@@ -1,4 +1,4 @@
-/* global arrayToMatrix */
+/* global arrayToMatrix getOrigin */
SVG.extend(SVG.Element, {
// Reset all transformations
@@ -58,7 +58,7 @@ SVG.extend(SVG.Element, {
}
// Set the origin according to the defined transform
- o.origin = getOrigin (o, this)
+ o.origin = getOrigin(o, this)
// The user can pass a boolean, an SVG.Element or an SVG.Matrix or nothing
var cleanRelative = relative === true ? this : (relative || false)