Fix bugs with media info table

This commit is contained in:
Jonathan Wong 2016-01-15 22:15:45 -08:00
commit 6152a1e913
10 changed files with 55 additions and 60 deletions

View file

@ -22,7 +22,7 @@
</div>
</div>
<div class='table-card-back'>
<table class="display" id="sync_table" width="100%">
<table class="display no-fixed" id="sync_table" width="100%">
<thead>
<tr>
<th align='left' id="state">State</th>
@ -54,7 +54,7 @@
<script>
$(document).ready(function() {
sync_table_options.ajax = {
"url": "get_sync"
url: 'get_sync'
}
sync_table = $('#sync_table').DataTable(sync_table_options);
var colvis = new $.fn.dataTable.ColVis( sync_table, { buttonText: '<i class="fa fa-columns"></i> Select columns', buttonClass: 'btn btn-dark' } );