diff options
author | wout <wout@impinc.co.uk> | 2012-12-18 13:16:25 +0100 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2012-12-18 13:16:25 +0100 |
commit | ecc7c2b21cc484a0a57cd7df02a533c65f7bde97 (patch) | |
tree | ccf3cce51e73e7dfd454d44ce366901a1242635d /src/image.js | |
parent | 1d8f6a6bfda2c09a1fafe330ac2d91e9d38e2019 (diff) | |
download | svg.js-ecc7c2b21cc484a0a57cd7df02a533c65f7bde97.tar.gz svg.js-ecc7c2b21cc484a0a57cd7df02a533c65f7bde97.zip |
Added transform()
Diffstat (limited to 'src/image.js')
-rw-r--r-- | src/image.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/image.js b/src/image.js index bc1dc60..107fef4 100644 --- a/src/image.js +++ b/src/image.js @@ -7,10 +7,10 @@ SVG.Image = function Image() { SVG.Image.prototype = new SVG.Element(); // include the container object -SVG.Utils.merge(SVG.Image, SVG.Container); +SVG.extend(SVG.Image, SVG.Container); // Add image-specific functions -SVG.Utils.merge(SVG.Image, { +SVG.extend(SVG.Image, { // (re)load image load: function(u) { |