Remove svgXML on get action.

This commit is contained in:
Paulo Gustavo Veiga 2012-08-31 22:53:56 -03:00
parent b855da47d0
commit 00829bfcc4

View File

@ -23,7 +23,8 @@
iframeForm.setAttribute('method', context.method);
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);
iframeForm.submit();
}