aboutsummaryrefslogtreecommitdiffstats
path: root/src/image.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/image.js')
-rw-r--r--src/image.js12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/image.js b/src/image.js
index 8ae8ef3..b9340e4 100644
--- a/src/image.js
+++ b/src/image.js
@@ -1,18 +1,16 @@
-
SVG.Image = function Image() {
this.constructor.call(this, SVG.create('image'));
};
-// inherit from SVG.Element
+// Inherit from SVG.Element
SVG.Image.prototype = new SVG.Shape();
-// add image-specific functions
SVG.extend(SVG.Image, {
- // (re)load image
- load: function(u) {
- this.src = u;
- return (u ? this.attr('xlink:href', u, SVG.xlink) : this);
+ /* (re)load image */
+ load: function(url) {
+ this.src = url;
+ return (url ? this.attr('xlink:href', url, SVG.xlink) : this);
}
}); \ No newline at end of file