@@ -67,8 +67,10 @@
<script>
$(document).ready( function () {
- $('#table1').DataTable();
- $('#table2').DataTable();
+ setTimeout(function(){
+ $('#table1').DataTable();
+ $('#table2').DataTable();
+ }, 3000);
} );
</script>