From 27194c8eb41f2b5a0262a631c4db4d82a0870ace Mon Sep 17 00:00:00 2001 From: "Adam D. Barratt" Date: Thu, 14 Nov 2019 20:49:09 +0000 Subject: [PATCH] Disable paging in DataTables This brings the functionality more in line with the previous incarnation. The configuration for the paging functionality is left in place to make it simpler to enable / disable as desired, and potentially allow users the option at some future point. Signed-off-by: Adam D. Barratt --- html/debdb.js | 1 + 1 file changed, 1 insertion(+) diff --git a/html/debdb.js b/html/debdb.js index 936c7c6..b12772a 100644 --- a/html/debdb.js +++ b/html/debdb.js @@ -12,6 +12,7 @@ $(document).ready(function() { var table = $("#machines").DataTable({ orderCellsTop: true, + paging: false, pageLength: 25, lengthMenu: [[10, 25, 50, 100, -1], [10, 25, 50, 100, "All"]] }); -- 2.20.1