mirror of
https://github.com/janeczku/calibre-web
synced 2025-10-20 18:17:40 +00:00
Improved displaying of username and task title in tasks
This commit is contained in:
@@ -22,6 +22,26 @@ var selections = [];
|
||||
var reload = false;
|
||||
|
||||
$(function() {
|
||||
$('#tasktable').bootstrapTable({
|
||||
formatNoMatches: function () {
|
||||
return '';
|
||||
},
|
||||
striped: true
|
||||
});
|
||||
if ($('#tasktable').length) {
|
||||
setInterval(function () {
|
||||
$.ajax({
|
||||
method: "get",
|
||||
url: getPath() + "/ajax/emailstat",
|
||||
async: true,
|
||||
timeout: 900,
|
||||
success: function (data) {
|
||||
$('#table').bootstrapTable("load", data);
|
||||
}
|
||||
});
|
||||
}, 2000);
|
||||
}
|
||||
|
||||
$("#books-table").on("check.bs.table check-all.bs.table uncheck.bs.table uncheck-all.bs.table",
|
||||
function (e, rowsAfter, rowsBefore) {
|
||||
var rows = rowsAfter;
|
||||
|
Reference in New Issue
Block a user