290
edits
Line 1: | Line 1: | ||
document.addEventListener("DOMContentLoaded", function() { | document.addEventListener("DOMContentLoaded", function() { | ||
const | const editButton = document.querySelector("a#ca-edit"); | ||
if ( | |||
if (editButton) { | |||
// Видаляємо параметр "§ion=0" з посилання | |||
editButton.href = editButton.href.replace("§ion=0", ""); | |||
// Змінюємо текст кнопки на "Редагувати код" | |||
editButton.innerText = "Редагувати код"; | |||
// Змінюємо атрибут title | |||
editButton.title = "Редагувати всю сторінку"; | |||
} | } | ||
}); | }); |
edits