Prettier JQuery tables
[contractdashboard.git] / media / unit_testing / tests_onhold / 1_dom / 2840-restore-table-width.js
blob:a/media/unit_testing/tests_onhold/1_dom/2840-restore-table-width.js -> blob:b/media/unit_testing/tests_onhold/1_dom/2840-restore-table-width.js
  // 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();
  } );