Browse Source

Merge pull request #89 from ibrahima/patch-3

Fix unclosed bracket in jQuery selector on main page
pull/180/head
Matt Holt 11 years ago
parent
commit
a733a67dd0
  1. 4
      index.html

4
index.html

@ -370,7 +370,7 @@ var results = Papa.parse(csv, { @@ -370,7 +370,7 @@ var results = Papa.parse(csv, {
</p>
</div>
<div class="grid-55">
<code class="block">$("input[type=file").parse({
<code class="block">$("input[type=file]").parse({
config: {
complete: function(results, file) {
console.log("File done:", file, results);
@ -445,4 +445,4 @@ var csv = Papa.unparse(yourData);</code> @@ -445,4 +445,4 @@ var csv = Papa.unparse(yourData);</code>
</footer>
</div>
</body>
</html>
</html>

Loading…
Cancel
Save