Fix missing paging on /user-content

This commit is contained in:
Chris Wilson
2020-12-05 14:59:29 -05:00
parent 787242bb5f
commit 63d4162c97
6 changed files with 43 additions and 33 deletions

View File

@@ -0,0 +1,17 @@
window.addEventListener('load', () => {
console.log("loaded");
$("#rooms-table").DataTable({
"paging": false,
"ordering": true,
"order": [[ 3, "desc" ]],
"info": false,
"dom": "t",
});
$("#seeds-table").DataTable({
"paging": false,
"ordering": true,
"order": [[ 2, "desc" ]],
"info": false,
"dom": "t",
});
});