summaryrefslogtreecommitdiff
path: root/CoreWiki/wwwroot/js/site.js
blob: 02fb148f8f395f9d58767b1cc0cea5600239a7a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
// for details on configuring this project to bundle and minify static web assets.

// Write your JavaScript code.
(function () {
    var timeStamps = document.querySelectorAll(".timeStampValue");
    for (var ts of timeStamps) {
        var thisTimeStamp = ts.getAttribute("data-value");
        var date = new Date(thisTimeStamp);
        ts.textContent = moment(date).format('LLL');
    }
})();