Difference between revisions of "User:Crazq/minerva.js"
Jump to navigation
Jump to search
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
mw.hook('wikipage.content').add(function() { | |||
const | const editButton = document.querySelector('a#ca-edit'); | ||
if ( | |||
if (editButton) { | |||
editButton. | // Видаляємо параметр "§ion=0" з посилання | ||
editButton.href = editButton.href.replace(/§ion=\d+/, ""); | |||
// Змінюємо текст кнопки на "Редагувати код" | |||
editButton.innerText = "Редагувати код"; | |||
// Змінюємо атрибут 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) {
// Видаляємо параметр "§ion=0" з посилання
editButton.href = editButton.href.replace(/§ion=\d+/, "");
// Змінюємо текст кнопки на "Редагувати код"
editButton.innerText = "Редагувати код";
// Змінюємо атрибут title
editButton.title = "Редагувати всю сторінку";
}
});