Browse Source

Fixed syntax error (oops)

pull/62/head
Matthew Holt 11 years ago
parent
commit
145b2eb570
  1. 2
      papaparse.js

2
papaparse.js

@ -597,7 +597,7 @@ @@ -597,7 +597,7 @@
});
}
if (finishedWithEntireFile && (isFunction(config.complete))
if (finishedWithEntireFile && isFunction(config.complete))
config.complete(undefined, file);
else if (results.meta.aborted && isFunction(config.complete))
config.complete(results, file);

Loading…
Cancel
Save