No edit summary
Tag: Manual revert
No edit summary
Line 42: Line 42:


document.querySelector(".mw-logo-wordmark").textContent = "Measure, Report, Verify, Repeat";
document.querySelector(".mw-logo-wordmark").textContent = "Measure, Report, Verify, Repeat";
let footerUL = document.querySelector("#footer-info");
    if (footerUL) {
        let newListItem = document.createElement("li");
        newListItem.innerHTML = "All content, data, and information contributed to the IEF.wiki is made available under the CC0 1.0 Universal (Public Domain Dedication) license. This means that anyone is free to: Copy, modify, distribute, and use the content for any purpose, including commercial purposes, without asking for permission or providing attribution.";
        footerUL.appendChild(newListItem);
    }