Difference between revisions of "User:Crazq/minerva.js"

From the CreationKit Wiki
Jump to navigation Jump to search
(Created page with "document.addEventListener("DOMContentLoaded", function() { const caEditLink = document.querySelector("#ca-edit"); if (caEditLink) { caEditLink.href = "https://...")
 
Line 3: Line 3:
     if (caEditLink) {
     if (caEditLink) {
         caEditLink.href = "https://ck.uesp.net/w/index.php?title=Help:Welcome_to_the_Wiki/uk&action=edit";
         caEditLink.href = "https://ck.uesp.net/w/index.php?title=Help:Welcome_to_the_Wiki/uk&action=edit";
        editButton.textContent = "Редагувати код";
     }
     }
});
});

Revision as of 07:26, 8 November 2024

document.addEventListener("DOMContentLoaded", function() {
    const caEditLink = document.querySelector("#ca-edit");
    if (caEditLink) {
        caEditLink.href = "https://ck.uesp.net/w/index.php?title=Help:Welcome_to_the_Wiki/uk&action=edit";
        editButton.textContent = "Редагувати код";
    }
});