mirror of https://gitee.com/bigwinds/arangodb
bugfix
This commit is contained in:
parent
de110701cd
commit
02eb4c162f
|
@ -144,10 +144,10 @@
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<div id="documentsToolbar">
|
<div id="documentsToolbar">
|
||||||
<button id="documents_first"><img src="/_admin/html/media/icons/rnd_br_first_icon16.png"></button>
|
<button id="documents_last"><img src="/_admin/html/media/icons/rnd_br_first_icon16.png"></button>
|
||||||
<button id="documents_prev"><img src="/_admin/html/media/icons/rnd_br_prev_icon16.png"></button>
|
<button id="documents_next"><img src="/_admin/html/media/icons/rnd_br_prev_icon16.png"></button>
|
||||||
<button id="documents_next"><img src="/_admin/html/media/icons/rnd_br_next_icon16.png"></button>
|
<button id="documents_prev"><img src="/_admin/html/media/icons/rnd_br_next_icon16.png"></button>
|
||||||
<button id="documents_last"><img src="/_admin/html/media/icons/rnd_br_last_icon16.png"></button>
|
<button id="documents_first"><img src="/_admin/html/media/icons/rnd_br_last_icon16.png"></button>
|
||||||
<a id="documents_status">Showing</a>
|
<a id="documents_status">Showing</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@ var currentLoglevel = 5;
|
||||||
var tables = ["#logTableID", "#critLogTableID", "#warnLogTableID", "#infoLogTableID", "#debugLogTableID"];
|
var tables = ["#logTableID", "#critLogTableID", "#warnLogTableID", "#infoLogTableID", "#debugLogTableID"];
|
||||||
|
|
||||||
$.each(tables, function(v, i ) {
|
$.each(tables, function(v, i ) {
|
||||||
$(i + '_next').live('click', function () {
|
$(i + '_prev').live('click', function () {
|
||||||
|
|
||||||
if ( i == "#logTableID" ) {
|
if ( i == "#logTableID" ) {
|
||||||
createNextPagination("all");
|
createNextPagination("all");
|
||||||
|
@ -38,7 +38,7 @@ $.each(tables, function(v, i ) {
|
||||||
createNextPagination();
|
createNextPagination();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
$(i + '_prev').live('click', function () {
|
$(i + '_next').live('click', function () {
|
||||||
if ( i == "#logTableID" ) {
|
if ( i == "#logTableID" ) {
|
||||||
createPrevPagination("all");
|
createPrevPagination("all");
|
||||||
}
|
}
|
||||||
|
@ -46,10 +46,10 @@ $.each(tables, function(v, i ) {
|
||||||
createPrevPagination();
|
createPrevPagination();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
$(i + '_first').live('click', function () {
|
$(i + '_last').live('click', function () {
|
||||||
createLogTable(currentLoglevel);
|
createLogTable(currentLoglevel);
|
||||||
});
|
});
|
||||||
$(i+ '_last').live('click', function () {
|
$(i+ '_first').live('click', function () {
|
||||||
createLastLogPagination(i);
|
createLastLogPagination(i);
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue