1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-01-30 23:52:11 +01:00

Api fix - cache() method should look for 'search' as the passed in

parameter
This commit is contained in:
Allan Jardine 2013-11-14 17:08:10 +00:00
parent 5c9d54e6f5
commit debea960c6
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
d1221f86def93ca4d1bdf526a7812d2d64891967
48e7986fbdcf57964ca3f42942113186d418b772

View File

@ -7318,7 +7318,7 @@
_api_registerPlural( 'rows().cache()', 'row().cache()', function ( type ) {
return this.iterator( 'row', function ( settings, row ) {
return type === 'filter' ? row._aFilterData : row._aSortData;
return type === 'search' ? row._aFilterData : row._aSortData;
} );
} );