healthchecks/static/js/log.js

22 lines
710 B
JavaScript

$(function () {
function switchDateFormat(format) {
$("#log td.datetime").each(function(index, cell) {
var dt = moment(cell.getAttribute("data-raw"));
format == "local" ? dt.local() : dt.utc();
$(".date", cell).text(dt.format("MMM D"));
$(".time", cell).text(dt.format("HH:mm"));
})
}
$("#format-switcher").click(function(ev) {
var format = ev.target.getAttribute("data-format");
switchDateFormat(format);
});
switchDateFormat("local");
// The table is initially hidden to avoid flickering as we convert dates.
// Once it's ready, set it to visible:
$("#log").css("visibility", "visible");
});