mirror of
https://github.com/DataTables/DataTables.git
synced 2024-12-03 15:24:10 +01:00
19 lines
405 B
JavaScript
19 lines
405 B
JavaScript
|
// DATA_TEMPLATE: dom_data
|
||
|
oTest.fnStart( "2840 - Restore table width on fnDestory" );
|
||
|
|
||
|
$(document).ready( function () {
|
||
|
document.cookie = "";
|
||
|
$('#example').dataTable( {
|
||
|
"sScrollX": "100%",
|
||
|
"sScrollXInner": "110%"
|
||
|
} );
|
||
|
$('#example').dataTable().fnDestroy();
|
||
|
|
||
|
oTest.fnTest(
|
||
|
"Width after destroy",
|
||
|
null,
|
||
|
function () { return $('#example').width() == "800"; }
|
||
|
);
|
||
|
|
||
|
oTest.fnComplete();
|
||
|
} );
|