mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 06:47:50 +01:00
10 lines
296 B
JavaScript
10 lines
296 B
JavaScript
|
$(function () {
|
|||
|
$(".localizeDate").each(function (index) {
|
|||
|
var serverDate = $(this).text();
|
|||
|
var localDate = new Date(serverDate);
|
|||
|
|
|||
|
var dateString = localDate.toLocaleDateString() + " " + localDate.toLocaleTimeString();
|
|||
|
$(this).text(dateString);
|
|||
|
});
|
|||
|
});
|