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>
}

View File

@@ -108,16 +108,13 @@
// 24th January, Macintosh launch
case 24:
@Html.Raw("Fonts are © 2014 <a href=\"http://christtrekker.users.sourceforge.net/fnt/chicago.shtml\" target=\"_blank\">Robin Casady</a>")
;
break;
// 23rd July, Amiga launch
case 204:
@Html.Raw("Fonts are © 2013 <a href=\"https://github.com/rewtnull/amigafonts\" target=\"_blank\">TrueSchool Ascii</a>")
;
break;
default:
@Html.Raw("Fonts are © 2015 - 2016 <a href=\"http://int10h.org\" target=\"_blank\">VileR</a>")
;
break;
}
<br />
@@ -129,9 +126,9 @@
Claunia.com
</a>
</footer>
@RenderSection("Scripts", false)
<script crossorigin="anonymous" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script crossorigin="anonymous" integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut" src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
<script crossorigin="anonymous" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
@RenderSection("Scripts", false)
</body>
</html>