webui: standardised all rowCount parameters for tables (#5067)

This commit is contained in:
Neil Lathwood
2016-11-26 20:57:12 +00:00
committed by GitHub
parent 32668026a7
commit 9d5fd2b4cf
3 changed files with 3 additions and 3 deletions

View File

@@ -159,7 +159,7 @@ include 'includes/modal/new_bill.inc.php';
header: $('#table-header').html()
},
columnSelection: false,
rowCount: [10,20,50,100,-1],
rowCount: [50,100,250,-1],
post: function() {
return {
id: 'bills',

View File

@@ -15,7 +15,7 @@
<script>
var grid = $("#mempool").bootgrid({
ajax: true,
rowCount: [25,50,100,250,-1],
rowCount: [50,100,250,-1],
post: function ()
{
return {

View File

@@ -50,7 +50,7 @@ function formatUnits(units,decimals,display,base) {
var grid = $("#ports").bootgrid({
ajax: true,
rowCount: [25, 50, 100, 250, -1],
rowCount: [50, 100, 250, -1],
converters: {
'duration': {
to: function (value) { return moment.duration(value, 'seconds').humanize(); }