1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-02-19 17:54:14 +01:00

Fix: Legacy API fnGetData with no parameters was flattening the return

array
This commit is contained in:
Allan Jardine 2014-04-18 08:45:29 +01:00
parent 950110e1fd
commit 22161b3224
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
3911b8970e90370e8edf4f093f1afcbc2feb859b 8f8b1e7915da0e8681302016830c46dd62fa9797

View File

@ -5457,7 +5457,7 @@
api.row( src ).data() || null; api.row( src ).data() || null;
} }
return api.data().flatten().toArray(); return api.data().toArray();
}; };