1
0
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:
Allan Jardine 2014-06-18 12:22:34 +01:00
parent c5414152ed
commit 6b12300c69
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
3caec7dedaf1192da42f7d023dd86b45e95c5938
92d5bd399c119ff7fd2579b054dbeea0bb15806c

View File

@ -7428,7 +7428,7 @@
tmp = $.inArray( i, displayFiltered );
if ((tmp === -1 && search == 'removed') ||
(tmp === 1 && search == 'applied') )
(tmp >= 0 && search == 'applied') )
{
a.push( i );
}