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

From the CreationKit Wiki
Jump to navigation Jump to search
Line 1: Line 1:
document.addEventListener("DOMContentLoaded", function() {
document.addEventListener("DOMContentLoaded", function() {
     const caEditLink = document.querySelector("#ca-edit");
     const editButton = document.querySelector("a#ca-edit");
     if (caEditLink) {
 
         caEditLink.href = "https://ck.uesp.net/w/index.php?title=Help:Welcome_to_the_Wiki/uk&action=edit";
     if (editButton) {
         caEditLink.textContent = "Редагувати код"; // Змінює текст кнопки
         // Видаляємо параметр "&section=0" з посилання
        editButton.href = editButton.href.replace("&section=0", "");
 
         // Змінюємо текст кнопки на "Редагувати код"
        editButton.innerText = "Редагувати код";
 
        // Змінюємо атрибут title
        editButton.title = "Редагувати всю сторінку";
     }
     }
});
});

Revision as of 07:35, 8 November 2024

document.addEventListener("DOMContentLoaded", function() {
    const editButton = document.querySelector("a#ca-edit");

    if (editButton) {
        // Видаляємо параметр "&section=0" з посилання
        editButton.href = editButton.href.replace("&section=0", "");

        // Змінюємо текст кнопки на "Редагувати код"
        editButton.innerText = "Редагувати код";

        // Змінюємо атрибут title
        editButton.title = "Редагувати всю сторінку";
    }
});