diff --git a/main/webapp/modules/core/scripts/dialogs/custom-tabular-exporter-dialog.js b/main/webapp/modules/core/scripts/dialogs/custom-tabular-exporter-dialog.js index 6620e39c2..1dd5e0842 100644 --- a/main/webapp/modules/core/scripts/dialogs/custom-tabular-exporter-dialog.js +++ b/main/webapp/modules/core/scripts/dialogs/custom-tabular-exporter-dialog.js @@ -320,7 +320,7 @@ CustomTabularExporterDialog.prototype._postExport = function(preview) { document.body.appendChild(form); - window.open("about:blank", "refine-export"); + window.open(" ", "refine-export"); form.submit(); document.body.removeChild(form); diff --git a/main/webapp/modules/core/scripts/dialogs/sql-exporter-dialog.js b/main/webapp/modules/core/scripts/dialogs/sql-exporter-dialog.js index cf10d1112..c8e7399ab 100755 --- a/main/webapp/modules/core/scripts/dialogs/sql-exporter-dialog.js +++ b/main/webapp/modules/core/scripts/dialogs/sql-exporter-dialog.js @@ -368,7 +368,7 @@ function SqlExporterDialog(options) { // alert("form::" + form); document.body.appendChild(form); - window.open("about:blank", "refine-export"); + window.open(" ", "refine-export"); form.submit(); document.body.removeChild(form); diff --git a/main/webapp/modules/core/scripts/dialogs/templating-exporter-dialog.js b/main/webapp/modules/core/scripts/dialogs/templating-exporter-dialog.js index acd027837..88dbd5d44 100644 --- a/main/webapp/modules/core/scripts/dialogs/templating-exporter-dialog.js +++ b/main/webapp/modules/core/scripts/dialogs/templating-exporter-dialog.js @@ -169,7 +169,7 @@ TemplatingExporterDialog.prototype._export = function() { document.body.appendChild(form); - window.open("about:blank", "refine-export"); + window.open(" ", "refine-export"); form.submit(); document.body.removeChild(form); diff --git a/main/webapp/modules/core/scripts/project/exporters.js b/main/webapp/modules/core/scripts/project/exporters.js index 5823f7a5f..0b0038578 100644 --- a/main/webapp/modules/core/scripts/project/exporters.js +++ b/main/webapp/modules/core/scripts/project/exporters.js @@ -126,7 +126,7 @@ ExporterManager.handlers.exportRows = function(format, ext) { document.body.appendChild(form); - window.open("about:blank", "refine-export"); + window.open(" ", "refine-export"); form.submit(); document.body.removeChild(form); @@ -235,7 +235,7 @@ ExporterManager.handlers.exportProject = function() { document.body.appendChild(form); - window.open("about:blank", "refine-export"); + window.open(" ", "refine-export"); form.submit(); document.body.removeChild(form);