mirror of
https://github.com/DataTables/DataTables.git
synced 2025-03-02 03:29:14 +01:00
Merge pull request #115 from timtucker/patch-27
Update media/src/core/core.draw.js
This commit is contained in:
commit
542066100a
@ -380,15 +380,12 @@ 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 )
|
anRows.push( oSettings.aoOpenRows[k].nTr );
|
||||||
{
|
break;
|
||||||
anRows.push( oSettings.aoOpenRows[k].nTr );
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user