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

comments.js « js « assets - github.com/reuixiy/hugo-theme-meme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 32e010eeab6982aaf6a935406e285cf1a8b3c002 (plain)
1
2
3
4
5
6
7
8
9
10
window.addEventListener("DOMContentLoaded", event => {
    const commentsToggle = document.getElementById('load-comments');

    if (commentsToggle !== null) {
        commentsToggle.addEventListener('click', function () {
            loadComments();
            this.style = "display: none";
        });
    }
}, {once: true});