aboutsummaryrefslogtreecommitdiffstats
path: root/src/defs.js
diff options
context:
space:
mode:
authorwout <wout@impinc.co.uk>2012-12-18 13:16:25 +0100
committerwout <wout@impinc.co.uk>2012-12-18 13:16:25 +0100
commitecc7c2b21cc484a0a57cd7df02a533c65f7bde97 (patch)
treeccf3cce51e73e7dfd454d44ce366901a1242635d /src/defs.js
parent1d8f6a6bfda2c09a1fafe330ac2d91e9d38e2019 (diff)
downloadsvg.js-ecc7c2b21cc484a0a57cd7df02a533c65f7bde97.tar.gz
svg.js-ecc7c2b21cc484a0a57cd7df02a533c65f7bde97.zip
Added transform()
Diffstat (limited to 'src/defs.js')
-rw-r--r--src/defs.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/defs.js b/src/defs.js
index 4ba7c8c..f5753e1 100644
--- a/src/defs.js
+++ b/src/defs.js
@@ -7,10 +7,10 @@ SVG.Defs = function Defs() {
SVG.Defs.prototype = new SVG.Element();
// include the container object
-SVG.Utils.merge(SVG.Defs, SVG.Container);
+SVG.extend(SVG.Defs, SVG.Container);
// Add def-specific functions
-SVG.Utils.merge(SVG.Defs, {
+SVG.extend(SVG.Defs, {
// define clippath
clipPath: function() {