Skip to content

Commit 8c4ab10

Browse files
committed
DVF-2652 drawing performance part2
1 parent baed26e commit 8c4ab10

File tree

3 files changed

+699
-1014
lines changed

3 files changed

+699
-1014
lines changed

src/acgraph.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ goog.require('acgraph.vector.primitives');
2222
goog.require('acgraph.vector.svg');
2323
goog.require('acgraph.vector.vml');
2424
goog.require('goog.dom');
25+
goog.require('goog.net.IframeIo');
2526
goog.require('goog.userAgent');
2627

2728

@@ -215,6 +216,16 @@ acgraph.server = function(opt_address) {
215216
};
216217

217218

219+
/**
220+
* Send form POST request on passed url with passed request params.
221+
* @param {string} url .
222+
* @param {Object.<string, *>=} opt_arguments .
223+
*/
224+
acgraph.sendRequestToExportServer = function(url, opt_arguments) {
225+
goog.net.IframeIo.send(url, undefined, 'POST', false, opt_arguments);
226+
};
227+
228+
218229
//----------------------------------------------------------------------------------------------------------------------
219230
//
220231
// CSS

src/utils/HelperElement.js

Lines changed: 0 additions & 187 deletions
This file was deleted.

0 commit comments

Comments
 (0)