mirror of https://gitee.com/bigwinds/arangodb
Added classes to pagination buttons, s.t. they are using rounded style as well
This commit is contained in:
parent
4899db58bf
commit
8a3e66f4e4
|
@ -639,10 +639,10 @@
|
||||||
};
|
};
|
||||||
target.pagination(options);
|
target.pagination(options);
|
||||||
$('#documentsToolbarF').prepend(
|
$('#documentsToolbarF').prepend(
|
||||||
'<ul class="prePagi"><li><a id="documents_first">'+
|
'<ul class="prePagi"><li><a id="documents_first" class="paginationButton">'+
|
||||||
'<span class="glyphicon glyphicon-step-backward"></span></a></li></ul>');
|
'<span class="glyphicon glyphicon-step-backward"></span></a></li></ul>');
|
||||||
$('#documentsToolbarF').append(
|
$('#documentsToolbarF').append(
|
||||||
'<ul class="lasPagi"><li><a id="documents_last">'+
|
'<ul class="lasPagi"><li><a id="documents_last" class="paginationButton">'+
|
||||||
'<span class="glyphicon glyphicon-step-forward"></span></a></li></ul>');
|
'<span class="glyphicon glyphicon-step-forward"></span></a></li></ul>');
|
||||||
var total = $('#totalDocuments');
|
var total = $('#totalDocuments');
|
||||||
if (total.length > 0) {
|
if (total.length > 0) {
|
||||||
|
|
|
@ -159,11 +159,11 @@
|
||||||
};
|
};
|
||||||
target.pagination(options);
|
target.pagination(options);
|
||||||
$('#logPaginationDiv').prepend(
|
$('#logPaginationDiv').prepend(
|
||||||
'<ul class="prePagi"><li><a id="logTableID_first">'+
|
'<ul class="prePagi"><li><a id="logTableID_first" class="paginationButton">'+
|
||||||
'<span class="glyphicon glyphicon-step-backward"></span></a></li></ul>'
|
'<span class="glyphicon glyphicon-step-backward"></span></a></li></ul>'
|
||||||
);
|
);
|
||||||
$('#logPaginationDiv').append(
|
$('#logPaginationDiv').append(
|
||||||
'<ul class="lasPagi"><li><a id="logTableID_last">'+
|
'<ul class="lasPagi"><li><a id="logTableID_last" class="paginationButton">'+
|
||||||
'<span class="glyphicon glyphicon-step-forward"></span></a></li></ul>'
|
'<span class="glyphicon glyphicon-step-forward"></span></a></li></ul>'
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue