mirror of
https://github.com/DataTables/DataTables.git
synced 2024-11-29 11:24:10 +01:00
Fix: Row selector for page:all, order:index, search:applied was returning the data in index 1 only
* A simple logic error was causing this * This fixes DataTables/DataTables #348
This commit is contained in:
parent
c5414152ed
commit
6b12300c69
@ -1 +1 @@
|
||||
3caec7dedaf1192da42f7d023dd86b45e95c5938
|
||||
92d5bd399c119ff7fd2579b054dbeea0bb15806c
|
||||
|
2
media/js/jquery.dataTables.js
vendored
2
media/js/jquery.dataTables.js
vendored
@ -7428,7 +7428,7 @@
|
||||
tmp = $.inArray( i, displayFiltered );
|
||||
|
||||
if ((tmp === -1 && search == 'removed') ||
|
||||
(tmp === 1 && search == 'applied') )
|
||||
(tmp >= 0 && search == 'applied') )
|
||||
{
|
||||
a.push( i );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user