[be/csv,bugfix][xs]: csv loading from local online file was broken due to copy and paste error.
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user