standardize variable names

This commit is contained in:
Eric A. Miller
2014-05-28 23:52:08 -04:00
parent cff24e4834
commit 2111a4079b
15 changed files with 32 additions and 31 deletions

View File

@@ -24,25 +24,25 @@ $(document).ready(function() {
}, {
"data": 'port_count',
"searchable": false,
"render": function(data, type, full, meta) {
"render": function(data, type, row, meta) {
return data.replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
}, {
"data": 'ports_in_use',
"searchable": false,
"render": function(data, type, full, meta) {
"render": function(data, type, row, meta) {
return data.replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
}, {
"data": 'ports_shutdown',
"searchable": false,
"render": function(data, type, full, meta) {
"render": function(data, type, row, meta) {
return data.replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
}, {
"data": 'ports_free',
"searchable": false,
"render": function(data, type, full, meta) {
"render": function(data, type, row, meta) {
return data.replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
}