summaryrefslogtreecommitdiffstats
path: root/static/script.js
blob: 846c842834acb6d8ad1028867b7e739588ffe358 (plain) (blame)
1
2
3
4
5
6
7
8
9
"use strict";

//

document.addEventListener("DOMContentLoaded", () => {
    document
        .querySelectorAll(".is-indeterminate")
        .forEach((el) => (el.indeterminate = true));
});