btcpayserver/BTCPayServer/wwwroot/main/site.js

10 lines
296 B
JavaScript
Raw Normal View History

$(function () {
$(".localizeDate").each(function (index) {
var serverDate = $(this).text();
var localDate = new Date(serverDate);
var dateString = localDate.toLocaleDateString() + " " + localDate.toLocaleTimeString();
$(this).text(dateString);
});
});