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:
parent
5c9d54e6f5
commit
debea960c6
@ -1 +1 @@
|
||||
d1221f86def93ca4d1bdf526a7812d2d64891967
|
||||
48e7986fbdcf57964ca3f42942113186d418b772
|
||||
|
2
media/js/jquery.dataTables.js
vendored
2
media/js/jquery.dataTables.js
vendored
@ -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;
|
||||
} );
|
||||
} );
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user