diff options
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) { |