fixing quote escapes

This commit is contained in:
Max Ogden
2011-06-24 22:42:14 -04:00
parent 288b3c2fea
commit 92efb9c3e3
3 changed files with 4 additions and 5 deletions

View File

@@ -70,7 +70,6 @@
if (row.value[header]) {
value = row.value[header];
if (typeof(value) == "object") value = JSON.stringify(value);
if (typeof(value) == "string") value = value.replace(/\"/g, '""');
}
cells.push(value);
})