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

Update media/src/core/core.draw.js

Remove check for iOpenRows !== 0, since it isn't really needed.
(the contents of the loop just won't execute)
This commit is contained in:
Tim Tucker 2012-10-02 08:55:18 -03:00
parent 6b605936f7
commit fc445cd374

View File

@ -380,8 +380,6 @@ function _fnDraw( oSettings )
iRowCount++; iRowCount++;
/* If there is an open row - and it is attached to this parent - attach it on redraw */ /* If there is an open row - and it is attached to this parent - attach it on redraw */
if ( iOpenRows !== 0 )
{
for ( var k=0 ; k<iOpenRows ; k++ ) for ( var k=0 ; k<iOpenRows ; k++ )
{ {
if ( nRow == oSettings.aoOpenRows[k].nParent ) if ( nRow == oSettings.aoOpenRows[k].nParent )
@ -392,7 +390,6 @@ function _fnDraw( oSettings )
} }
} }
} }
}
else else
{ {
/* Table is empty - create a row with an empty message in it */ /* Table is empty - create a row with an empty message in it */