1
0
mirror of https://github.com/DataTables/DataTables.git synced 2024-11-29 11:24:10 +01:00

Fix: fnOpen should return a node, not undefined

This commit is contained in:
Allan Jardine 2014-03-20 15:28:44 +00:00
parent 67a2b18ca3
commit 75d28cad1c
2 changed files with 6 additions and 2 deletions

View File

@ -1 +1 @@
c672ef3563ffb4e8287d510c8088914114c58a52
a6370f0666a68b7753b2f53f4b937f03248ffece

View File

@ -5545,7 +5545,11 @@
*/
this.fnOpen = function( nTr, mHtml, sClass )
{
return this.api( true ).row( nTr ).child( mHtml, sClass ).show();
return this.api( true )
.row( nTr )
.child( mHtml, sClass )
.show()
.node();
};