$(function () {
|
|
$("#log tr.ok").on("click", function() {
|
|
$("#ping-details-body").text("Updating...");
|
|
$('#ping-details-modal').modal("show");
|
|
|
|
$.get(this.dataset.url, function(data) {
|
|
$("#ping-details-body" ).html(data);
|
|
});
|
|
|
|
return false;
|
|
});
|
|
|
|
function switchDateFormat(format) {
|
|
$("#log tr").each(function(index, row) {
|
|
var dt = moment(row.getAttribute("data-dt"));
|
|
format == "local" ? dt.local() : dt.utc();
|
|
|
|
$(".date", row).text(dt.format("MMM D"));
|
|
$(".time", row).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");
|
|
});
|