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 editButton = document.querySelector("a#ca-edit");
     const editButton = document.getElementById("ca-edit");


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


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


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

edits

Navigation menu