Difference between revisions of "User:Crazq/minerva.js"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
document.addEventListener("DOMContentLoaded", function() { | document.addEventListener("DOMContentLoaded", function() { | ||
const editButton = document. | const editButton = document.getElementById("ca-edit"); | ||
if (editButton) { | if (editButton) { | ||
// | // Видалення "§ion=0" з посилання | ||
editButton.href = editButton.href.replace("§ion=0", ""); | editButton.href = editButton.href.replace("§ion=0", ""); | ||
// | // Заміна тексту на "Редагувати код" | ||
editButton.innerText = "Редагувати код"; | editButton.innerText = "Редагувати код"; | ||
// | // Заміна атрибуту title | ||
editButton.title = "Редагувати всю сторінку"; | editButton.title = "Редагувати всю сторінку"; | ||
} | } | ||
}); | }); |
Revision as of 07:36, 8 November 2024
document.addEventListener("DOMContentLoaded", function() {
const editButton = document.getElementById("ca-edit");
if (editButton) {
// Видалення "§ion=0" з посилання
editButton.href = editButton.href.replace("§ion=0", "");
// Заміна тексту на "Редагувати код"
editButton.innerText = "Редагувати код";
// Заміна атрибуту title
editButton.title = "Редагувати всю сторінку";
}
});