summaryrefslogtreecommitdiff
path: root/scripts/onload.js
blob: 5c63f358f2df3c9d0806dd1a8c0cac3f3cbff207 (plain)
1
2
3
4
5
6
7
8
function addNodes() {
    const collection = document.getElementsByTagName("section");
    const container = document.getElementById("progressContainer");

    for (var i = 0; i < collection.length; i++) {
        container.innerHTML += "<nodes class=\"sidebar-progress-node\"></nodes>\n";
    }
}