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 /dist | |
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 'dist')
-rwxr-xr-x | dist/svg.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/svg.js b/dist/svg.js index 4de3979..fe53bc5 100755 --- a/dist/svg.js +++ b/dist/svg.js @@ -1,4 +1,4 @@ -/* svg.js 1.0.0-rc.6 - svg inventor regex default color array pointarray patharray number viewbox bbox rbox element parent container fx relative event defs group arrange mask clip gradient pattern doc shape use rect ellipse line poly path image text textpath nested hyperlink sugar set data memory loader helpers - svgjs.com/license */ +/* svg.js 1.0.0-rc.6-1-g1286e3d - svg inventor regex default color array pointarray patharray number viewbox bbox rbox element parent container fx relative event defs group arrange mask clip gradient pattern doc shape use rect ellipse line poly path image text textpath nested hyperlink sugar set data memory loader helpers - svgjs.com/license */ ;(function() { this.SVG = function(element) { @@ -2836,7 +2836,7 @@ , 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) } } |