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() {
mw.hook('wikipage.content').add(function() {
     const editButton = document.getElementById("ca-edit");
     const editButton = document.querySelector('a#ca-edit');


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


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


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

Latest revision as of 07:38, 8 November 2024

mw.hook('wikipage.content').add(function() {
    const editButton = document.querySelector('a#ca-edit');

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

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

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