1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-02-07 05:54:15 +01:00

Dev fix - Inverted logic for the information string

This commit is contained in:
Allan Jardine 2013-04-23 09:50:23 +01:00
parent 31b521291c
commit bb75f22233

View File

@ -48,8 +48,8 @@ function _fnUpdateInfo ( settings )
max = settings.fnRecordsTotal(), max = settings.fnRecordsTotal(),
total = settings.fnRecordsDisplay(), total = settings.fnRecordsDisplay(),
out = total ? out = total ?
lang.sInfoEmpty : lang.sInfo :
lang.sInfo; lang.sInfoEmpty;
if ( total !== max ) { if ( total !== max ) {
/* Record set after filtering */ /* Record set after filtering */