Remove svgXML on get action.
parent
b855da47d0
commit
00829bfcc4
|
@ -23,7 +23,8 @@
|
||||||
iframeForm.setAttribute('method', context.method);
|
iframeForm.setAttribute('method', context.method);
|
||||||
iframeForm.setAttribute('action', context.action);
|
iframeForm.setAttribute('action', context.action);
|
||||||
|
|
||||||
$('svgXml').setAttribute('value', window.document.getElementById('workspaceContainer').innerHTML);
|
var svgXml = context.method == "POST" ? window.document.getElementById('workspaceContainer').innerHTML : "";
|
||||||
|
$('svgXml').setAttribute('value', svgXml);
|
||||||
$('download').setAttribute('value', context.formatType);
|
$('download').setAttribute('value', context.formatType);
|
||||||
iframeForm.submit();
|
iframeForm.submit();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue