Browse Source

Invoke complete callback when parsing via jQuery (fixes #111)

pull/124/head 4.0.1
Matthew Holt 10 years ago
parent
commit
22b312a77d
  1. 2
      bower.json
  2. 2
      package.json
  3. 6
      papaparse.js
  4. 4
      papaparse.min.js
  5. 2
      parse.jquery.json

2
bower.json

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
{
"name": "Papa-Parse",
"version": "4.0.0",
"version": "4.0.1",
"main": "papaparse.js",
"homepage": "http://papaparse.com",
"authors": [

2
package.json

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
{
"name": "papaparse",
"version": "4.0.0",
"version": "4.0.1",
"description": "Fast and powerful CSV parser for the browser that supports web workers and streaming large files. Converts CSV to JSON and JSON to CSV.",
"keywords": [
"csv",

6
papaparse.js

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
/*
Papa Parse
v4.0.0
v4.0.1
https://github.com/mholt/PapaParse
*/
(function(global)
@ -85,7 +85,11 @@ @@ -85,7 +85,11 @@
function parseNextFile()
{
if (queue.length == 0)
{
if (isFunction(options.complete))
options.complete();
return;
}
var f = queue[0];

4
papaparse.min.js vendored

File diff suppressed because one or more lines are too long

2
parse.jquery.json

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
{
"name": "parse",
"version": "4.0.0",
"version": "4.0.1",
"title": "Papa Parse",
"description": "Powerful CSV parser that converts CSV to JSON and JSON to CSV. Supports web workers and streaming large files. Fastest CSV parser for JavaScript.",
"keywords": [

Loading…
Cancel
Save