290
edits
Line 1: | Line 1: | ||
document.addEventListener("DOMContentLoaded", function() { | document.addEventListener("DOMContentLoaded", function() { | ||
const | const observer = new MutationObserver(() => { | ||
const editButton = document.getElementById("ca-edit"); | |||
if (editButton) { | |||
editButton.href = "https://ck.uesp.net/w/index.php?title=Help:Welcome_to_the_Wiki/uk&action=edit"; | |||
} | editButton.innerText = "Редагувати код"; | ||
observer.disconnect(); // Припиняємо спостереження після внесення змін | |||
} | |||
}); | |||
observer.observe(document.body, { childList: true, subtree: true }); | |||
}); | }); |
edits