[be/csv,bugfix][xs]: csv loading from local online file was broken due to copy and paste error.

This commit is contained in:
Rufus Pollock
2012-07-08 16:42:44 +01:00
parent 22dd818183
commit 4e69026881

View File

@@ -39,7 +39,7 @@ this.recline.Backend.CSV = this.recline.Backend.CSV || {};
}); });
} else if (dataset.url) { } else if (dataset.url) {
$.get(dataset.url).done(function(data) { $.get(dataset.url).done(function(data) {
var rows = my.parseCSV(dataset.data, dataset); var rows = my.parseCSV(data, dataset);
dfd.resolve({ dfd.resolve({
records: rows, records: rows,
useMemoryStore: true useMemoryStore: true