mirror of https://gitee.com/bigwinds/arangodb
links
This commit is contained in:
parent
5572250c9d
commit
edaa9dd78d
|
@ -73,7 +73,7 @@
|
|||
<th>Name</th>
|
||||
<th>Status</th>
|
||||
<th>Size Documents</th>
|
||||
<th>Alive</th>
|
||||
<th>Number of Documents</th>
|
||||
</tr>
|
||||
</thead>
|
||||
</table>
|
||||
|
|
|
@ -226,7 +226,7 @@ var critLogTable = $('#critLogTableID').dataTable({
|
|||
"bAutoWidth": true,
|
||||
"iDisplayLength": -1,
|
||||
"bJQueryUI": true,
|
||||
"aoColumns": [{ "sClass":"center", "sWidth": "100px"}, {"bSortable":false}],
|
||||
"aoColumns": [{ "sClass":"center", "sWidth": "100px", "bSortable":false}, {"bSortable":false}],
|
||||
"oLanguage": {"sEmptyTable": "No critical logfiles available"}
|
||||
});
|
||||
|
||||
|
@ -242,7 +242,7 @@ var warnLogTable = $('#warnLogTableID').dataTable({
|
|||
"bAutoWidth": true,
|
||||
"iDisplayLength": -1,
|
||||
"bJQueryUI": true,
|
||||
"aoColumns": [{ "sClass":"center", "sWidth": "100px"}, {"bSortable":false}],
|
||||
"aoColumns": [{ "sClass":"center", "sWidth": "100px", "bSortable":false}, {"bSortable":false}],
|
||||
"oLanguage": {"sEmptyTable": "No warning logfiles available"}
|
||||
});
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -257,7 +257,7 @@ var infoLogTable = $('#infoLogTableID').dataTable({
|
|||
"bAutoWidth": true,
|
||||
"iDisplayLength": -1,
|
||||
"bJQueryUI": true,
|
||||
"aoColumns": [{ "sClass":"center", "sWidth": "100px"}, {"bSortable":false}],
|
||||
"aoColumns": [{ "sClass":"center", "sWidth": "100px", "bSortable":false}, {"bSortable":false}],
|
||||
"oLanguage": {"sEmptyTable": "No info logfiles available"}
|
||||
});
|
||||
|
||||
|
@ -273,7 +273,7 @@ var debugLogTable = $('#debugLogTableID').dataTable({
|
|||
"bAutoWidth": true,
|
||||
"iDisplayLength": -1,
|
||||
"bJQueryUI": true,
|
||||
"aoColumns": [{ "sClass":"center", "sWidth": "100px"}, {"bSortable":false}],
|
||||
"aoColumns": [{ "sClass":"center", "sWidth": "100px", "bSortable":false}, {"bSortable":false}],
|
||||
"oLanguage": {"sEmptyTable": "No debug logfiles available"}
|
||||
});
|
||||
|
||||
|
@ -289,7 +289,7 @@ var logTable = $('#logTableID').dataTable({
|
|||
"bAutoWidth": true,
|
||||
"iDisplayLength": -1,
|
||||
"bJQueryUI": true,
|
||||
"aoColumns": [{ "sClass":"center", "sWidth": "100px"}, {"bSortable":false}],
|
||||
"aoColumns": [{ "sClass":"center", "sWidth": "100px", "bSortable":false}, {"bSortable":false}],
|
||||
"oLanguage": {"sEmptyTable": "No logfiles available"}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue