mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -05:00
Fix namespace for images in SVGExport.
This commit is contained in:
parent
719b9d5e24
commit
ca0513b1b2
1 changed files with 1 additions and 1 deletions
|
@ -534,7 +534,7 @@ new function() {
|
||||||
height: size.height,
|
height: size.height,
|
||||||
version: '1.1',
|
version: '1.1',
|
||||||
xmlns: 'http://www.w3.org/2000/svg',
|
xmlns: 'http://www.w3.org/2000/svg',
|
||||||
xlink: 'http://www.w3.org/1999/xlink'
|
'xmlns:xlink': 'http://www.w3.org/1999/xlink'
|
||||||
});
|
});
|
||||||
for (var i = 0, l = layers.length; i < l; i++)
|
for (var i = 0, l = layers.length; i < l; i++)
|
||||||
node.appendChild(exportSVG(layers[i]));
|
node.appendChild(exportSVG(layers[i]));
|
||||||
|
|
Loading…
Reference in a new issue