mirror of
https://github.com/DataTables/DataTables.git
synced 2024-12-02 14:24:11 +01:00
14 lines
266 B
JavaScript
14 lines
266 B
JavaScript
|
// DATA_TEMPLATE: two_tables
|
||
|
oTest.fnStart( "Initialise two tables" );
|
||
|
|
||
|
$(document).ready( function () {
|
||
|
$('table.display').dataTable();
|
||
|
|
||
|
oTest.fnTest(
|
||
|
"Check that initialisation was okay",
|
||
|
null,
|
||
|
function () { return true; }
|
||
|
);
|
||
|
|
||
|
oTest.fnComplete();
|
||
|
} );
|