Use datatables for compact disc offsets.

This commit is contained in:
2019-11-10 14:26:30 +00:00
parent ee60399c9b
commit e966985282
2 changed files with 12 additions and 6 deletions

View File

@@ -34,7 +34,7 @@
// ****************************************************************************/
}
<a asp-action="Update" class="btn btn-primary">Update from AccurateRip</a>
<table class="table">
<table class="table" id="tblOffsets">
<thead>
<tr>
<th>
@@ -93,4 +93,13 @@
</tr>
}
</tbody>
</table>
</table>
@section scripts{
<script crossorigin="anonymous" integrity="sha256-L4cf7m/cgC51e7BFPxQcKZcXryzSju7VYBKJLOKPHvQ=" src="https://cdn.datatables.net/1.10.20/js/jquery.dataTables.min.js"></script>
<script language="javascript">
$(document).ready(function() {
$('#tblOffsets').DataTable();
} );
</script>
}