use a window.location.assign instead of creating a popup to export

This commit is contained in:
Isaac Connor 2018-07-17 08:26:19 -04:00
parent 683e8716f2
commit 37779ff51d
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ function submitToEvents( element ) {
function submitToExport(element) { function submitToExport(element) {
var form = element.form; var form = element.form;
createPopup('?view=export&filter='+$j(form).serialize(), 'zmExport', 'export' ); window.location.assign('?view=export&filter='+$j(form).serialize());
//createPopup('?view=export&filter_id='+form.elements['Id'].value, 'zmExport', 'export' ); //createPopup('?view=export&filter_id='+form.elements['Id'].value, 'zmExport', 'export' );
} }