Browse Source

Using latest

pull/89/head
Matthew Holt 11 years ago
parent
commit
a5c76266d2
  1. 7
      resources/js/papaparse.js

7
resources/js/papaparse.js

@ -1,6 +1,6 @@
/* /*
Papa Parse Papa Parse
v3.1.0 v3.1.1
https://github.com/mholt/PapaParse https://github.com/mholt/PapaParse
*/ */
(function(global) (function(global)
@ -791,7 +791,8 @@
row["__parsed_extra"] = []; row["__parsed_extra"] = [];
row["__parsed_extra"].push(_results.data[i][j]); row["__parsed_extra"].push(_results.data[i][j]);
} }
row[_fields[j]] = _results.data[i][j]; else
row[_fields[j]] = _results.data[i][j];
} }
} }
@ -1319,4 +1320,4 @@
{ {
return typeof func === 'function'; return typeof func === 'function';
} }
})(this); })(this);

Loading…
Cancel
Save