From 48245028b993d6da58ce21ed1be88f86e0c1110e Mon Sep 17 00:00:00 2001
From: Ibrahim Awwal
Date: Sun, 28 Sep 2014 16:34:09 -0700
Subject: [PATCH] Fix unclosed bracket in jQuery selector on main page
Minor thing, but the jquery selector in this demo code was not properly closed, so I fixed it.
---
index.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/index.html b/index.html
index 9405f10..a94a4df 100644
--- a/index.html
+++ b/index.html
@@ -370,7 +370,7 @@ var results = Papa.parse(csv, {
- $("input[type=file").parse({
+ $("input[type=file]").parse({
config: {
complete: function(results, file) {
console.log("File done:", file, results);
@@ -445,4 +445,4 @@ var csv = Papa.unparse(yourData);