aboutsummaryrefslogtreecommitdiffstats
path: root/src/image.js
diff options
context:
space:
mode:
authorwout <wout@impinc.co.uk>2013-08-05 14:08:36 +0100
committerwout <wout@impinc.co.uk>2013-08-05 14:08:36 +0100
commit945c1a0a423cf8a0b80fc8288651e04dec8b6610 (patch)
treed17c0f9ea6c4755d8d7169c2131f22990238a946 /src/image.js
parent2942e015a826e126d4c6bd4a5ae4a8f95673d0b0 (diff)
downloadsvg.js-945c1a0a423cf8a0b80fc8288651e04dec8b6610.tar.gz
svg.js-945c1a0a423cf8a0b80fc8288651e04dec8b6610.zip
Distinguished SVG.Container from SVG.parent, bumped to v0.32
SVG.Use inherits from SVG.Shape
Diffstat (limited to 'src/image.js')
-rw-r--r--src/image.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/image.js b/src/image.js
index 24806ff..d0a1b40 100644
--- a/src/image.js
+++ b/src/image.js
@@ -7,12 +7,10 @@ SVG.Image.prototype = new SVG.Shape
//
SVG.extend(SVG.Image, {
-
// (re)load image
load: function(url) {
return (url ? this.attr('href', (this.src = url), SVG.xlink) : this)
}
-
})
//