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

Jump to navigation Jump to search
no edit summary
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 = "Редагувати всю сторінку";
     }
     }
});
});
290

edits

Navigation menu