diff options
author | wout <wout@impinc.co.uk> | 2014-03-05 09:56:22 +0100 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2014-03-05 09:56:22 +0100 |
commit | 780c96d76d3fef78725aaf81113d7ae90edf30f4 (patch) | |
tree | f617e6e774648fa5e5987f35d294bdbccc40ae6a /src/image.js | |
parent | 1286e3de26baa3d75ec6a6eafbb2eaa11305c2e1 (diff) | |
download | svg.js-780c96d76d3fef78725aaf81113d7ae90edf30f4.tar.gz svg.js-780c96d76d3fef78725aaf81113d7ae90edf30f4.zip |
Replaced a non breaking space with a real space
Thanks @musterknabe
Diffstat (limited to 'src/image.js')
-rwxr-xr-x | src/image.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/image.js b/src/image.js index d70cfb4..33f3979 100755 --- a/src/image.js +++ b/src/image.js @@ -49,7 +49,7 @@ SVG.Image = SVG.invent({ , construct: { // Create image element, load image and set its size image: function(source, width, height) { - return this.put(new SVG.Image).load(source).size(width || 0, height || width || 0) + return this.put(new SVG.Image).load(source).size(width || 0, height || width || 0) } } |