Welcome to mirror list, hosted at ThFree Co, Russian Federation.

initMoment.js « js « assets - github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9b7cb33f6b64968115d9f3c838716ea94d6eaa23 (plain)
1
2
3
4
5
6
7
8
9
10
11
$(document).ready(function() {
    const tnode = $("#time")
    const update_localtime = function(){
        var time = moment()
            .tz(tnode.attr("data-time-zone"))
            .format(tnode.attr("data-time-format"));
        tnode.html(time);
    }
    update_localtime();
    setInterval(update_localtime, 1000);
})