mirror of
https://github.com/input-output-hk/foliage.git
synced 2024-11-22 11:12:50 +03:00
Disable pagination
This commit is contained in:
parent
04cb2aca07
commit
b950969559
@ -77,7 +77,8 @@
|
||||
$(document).ready(function () {
|
||||
const table = $('table').DataTable({
|
||||
order: [[2, 'desc']],
|
||||
lengthMenu: [ [50, 100, 500, -1], [50, 100, 500, "All"] ]
|
||||
lengthMenu: [ [50, 100, 500, -1], [50, 100, 500, "All"] ],
|
||||
paging: false
|
||||
})
|
||||
const urlParams = new URLSearchParams(location.search)
|
||||
if (urlParams.has('q')) {
|
||||
|
@ -72,7 +72,8 @@
|
||||
$(document).ready(function () {
|
||||
const table = $('table').DataTable({
|
||||
order: [[0, 'asc']],
|
||||
lengthMenu: [ [50, 100, 500, -1], [50, 100, 500, "All"] ]
|
||||
lengthMenu: [ [50, 100, 500, -1], [50, 100, 500, "All"] ],
|
||||
paging: false
|
||||
})
|
||||
const urlParams = new URLSearchParams(location.search)
|
||||
if (urlParams.has('q')) {
|
||||
|
Loading…
Reference in New Issue
Block a user