|
|
|
@ -66,6 +66,7 @@ function buildConfig()
@@ -66,6 +66,7 @@ function buildConfig()
|
|
|
|
|
worker: $('#worker').prop('checked'), |
|
|
|
|
comments: $('#comments').val(), |
|
|
|
|
complete: completeFn, |
|
|
|
|
error: errorFn, |
|
|
|
|
download: $('#download').prop('checked'), |
|
|
|
|
keepEmptyRows: $('#keepEmptyRows').prop('checked'), |
|
|
|
|
chunk: $('#chunk').prop('checked') ? chunkFn : undefined |
|
|
|
@ -86,6 +87,11 @@ function chunkFn(results, file)
@@ -86,6 +87,11 @@ function chunkFn(results, file)
|
|
|
|
|
rows += results.data.length; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function errorFn(error, file) |
|
|
|
|
{ |
|
|
|
|
console.log("ERROR:", error, file); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function completeFn() |
|
|
|
|
{ |
|
|
|
|
end = performance.now(); |
|
|
|
|